/* ============================================================
   ARIHANT SEASONS — styles.css
   ============================================================ */


@font-face {
  font-family: "againts";
  src: url("../fonts/against-regular.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "gotham";
  src: url("../fonts/gotham-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}


@font-face {
  font-family: "montserrat";
  src: url("../fonts/Montserrat-VariableFont_wght.ttf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: FontAwesome;
  src: url('../fonts/fontawesome/fontawesome-webfonte0a5-v=4.3.0.eot');
  src: url('../fonts/fontawesome/fontawesome-webfontd41d-.eot#iefix&v=4.3.0') format('embedded-opentype'), url('../fonts/fontawesome/fontawesome-webfonte0a5-v=4.3.0.woff2') format('woff2'), url('../fonts/fontawesome/fontawesome-webfonte0a5-v=4.3.0.woff') format('woff'), url('../fonts/fontawesome/fontawesome-webfonte0a5-v=4.3.0.ttf') format('truetype'), url('../fonts/fontawesome/fontawesome-webfonte0a5-v=4.3.0.svg#fontawesomeregular') format('svg');
  font-weight: 400;
  font-style: normal
}


.fa {
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0)
}

.fa-lg {
  font-size: 1.33333333em;
  line-height: .75em;
  vertical-align: -15%
}

.fa-2x {
  font-size: 2em
}

.fa-3x {
  font-size: 3em
}

.fa-4x {
  font-size: 4em
}

.fa-5x {
  font-size: 5em
}

.fa-fw {
  width: 1.28571429em;
  text-align: center
}

.fa-phone:before {
  content: "\f095";
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none
}

.fa-ul>li {
  position: relative
}

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: .14285714em;
  text-align: center
}

.fa-li.fa-lg {
  left: -1.85714286em
}

.fa-border {
  padding: .2em .25em .15em;
  border: .08em solid #eee;
  border-radius: .1em
}

/* ── VARIABLES ── */
:root {
  --cream: #fff8eb;
  /* --deep: #2b1a10; */
  --deep: #574033;
  --gold: #c9a44a;
  --gold-light: #e8c97a;
  --wine: #7a1f3a;
  --text: #3a2a20;
  --muted: #7a6a5a;
  --vxa-bg: #fffaee;
  --vxa-text: #41311a;
  --vxa-line: rgba(65, 49, 26, 0.68);
  --vxa-serif: "Times New Roman", Georgia, serif;
  --vxa-sans: "againts", Arial, Helvetica, sans-serif;
  --vxa-gotham: "gotham", Arial, Helvetica, sans-serif;
  --vxa-montserrat: "montserrat", Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--text);
  /* font-family: 'Jost', sans-serif; */
  font-weight: 300;
  overflow-x: hidden;
  font-family: var(--vxa-montserrat) !important;

}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
}

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes shimmer {
  0% {
    background-position: 200% center;
  }

  100% {
    background-position: -200% center;
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 164, 74, .45);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(201, 164, 74, 0);
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(0) translateX(0);
    opacity: .6;
  }

  33% {
    transform: translateY(-30px) translateX(14px);
    opacity: .3;
  }

  66% {
    transform: translateY(-12px) translateX(-10px);
    opacity: .5;
  }

  100% {
    transform: translateY(0) translateX(0);
    opacity: .6;
  }
}

@keyframes scanLine {
  0% {
    top: -4%;
  }

  100% {
    top: 104%;
  }
}

@keyframes borderGlow {

  0%,
  100% {
    border-color: rgba(201, 164, 74, .3);
  }

  50% {
    border-color: rgba(201, 164, 74, .85);
  }
}

/* ── REVEAL SYSTEM ── */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .85s cubic-bezier(.25, .8, .25, 1),
    transform .85s cubic-bezier(.25, .8, .25, 1);
}

.reveal.from-left {
  transform: translateX(-48px);
}

.reveal.from-right {
  transform: translateX(48px);
}

.reveal.scale-in {
  transform: scale(.93);
}

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

.reveal.d1 {
  transition-delay: .12s;
}

.reveal.d2 {
  transition-delay: .24s;
}

.reveal.d3 {
  transition-delay: .36s;
}

.reveal.d4 {
  transition-delay: .48s;
}

/* ── NAV ── */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .5s, padding .5s, box-shadow .5s;
}

#mainNav.scrolled {
  background: transparent;
  /* backdrop-filter: blur(16px); */
  padding: 12px 48px;
  /* box-shadow: 0 1px 30px rgba(43, 26, 16, .08);
  border-bottom: 1px solid rgba(201, 164, 74, .14); */
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--deep);
  line-height: 1.1;
}

.nav-brand-text span {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: .55rem;
  font-weight: 400;
  letter-spacing: .22em;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
}

.nav-links a {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  position: relative;
  transition: color .3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .35s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: 'Jost', sans-serif;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 10px 22px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .35s, transform .2s;
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
  transition: left .5s;
}

.nav-cta:hover::before {
  left: 100%;
}

.nav-cta:hover {
  background: var(--wine);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  width: 28px;
  background: none;
  border: none;
  padding: 0;
}

.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--deep);
  transition: transform .35s, opacity .35s;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}



/* Mobile nav overlay */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(.77, 0, .175, 1);
}

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

.nav-mobile a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--deep);
  text-decoration: none;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .4s, transform .4s, color .3s;
}

.nav-mobile.open a {
  opacity: 1;
  transform: translateX(0);
}

.nav-mobile.open a:nth-child(1) {
  transition-delay: .10s;
}

.nav-mobile.open a:nth-child(2) {
  transition-delay: .18s;
}

.nav-mobile.open a:nth-child(3) {
  transition-delay: .26s;
}

.nav-mobile.open a:nth-child(4) {
  transition-delay: .34s;
}

.nav-mobile a:hover {
  color: var(--gold);
}

.nav-mobile .mobile-cta {
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 14px 36px;
  cursor: pointer;
  margin-top: 8px;
  opacity: 0;
  transition: opacity .4s .42s;
}

.nav-mobile.open .mobile-cta {
  opacity: 1;
}


.brand-logo {
  width: 36px;
}

/* ── HERO ── */
#hero {
  min-height: 100svh;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 80px;
  text-align: center;
}

.hero-corner {
  position: absolute;
  width: 54px;
  height: 54px;
  border-color: rgba(201, 164, 74, .22);
  border-style: solid;
}

.hero-corner.tl {
  top: 80px;
  left: 40px;
  border-width: 1px 0 0 1px;
}

.hero-corner.tr {
  top: 80px;
  right: 40px;
  border-width: 1px 1px 0 0;
}

.hero-corner.bl {
  bottom: 56px;
  left: 40px;
  border-width: 0 0 1px 1px;
}

.hero-corner.br {
  bottom: 56px;
  right: 40px;
  border-width: 0 1px 1px 0;
}

.hero-bg-text {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(90px, 20vw, 240px);
  font-weight: 600;
  color: rgba(201, 164, 74, .055);
  letter-spacing: -.02em;
  user-select: none;
  pointer-events: none;
  top: 50%;
  white-space: nowrap;
  will-change: transform;
}

.hero-ornament {
  width: clamp(68px, 11vw, 126px);
  animation: float 5.5s ease-in-out infinite;
  margin-bottom: 34px;
  filter: drop-shadow(0 10px 28px rgba(201, 164, 74, .28));
}

.hero-tag {
  font-size: clamp(.58rem, .85vw, .7rem);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 7vw, 90px);
  font-weight: 400;
  line-height: 1.04;
  color: var(--deep);
  opacity: 0;
  animation: fadeUp 1s .42s forwards;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(.76rem, 1.2vw, .92rem);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 20px;
  opacity: 0;
  animation: fadeUp .8s .68s forwards;
}

.hero-shimmer-line {
  width: 110px;
  height: 1px;
  margin: 34px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  background-size: 200% auto;
  animation: shimmer 3s linear infinite, fadeIn .5s .95s forwards;
  opacity: 0;
}

.hero-badges {
  display: flex;
  gap: clamp(16px, 4vw, 50px);
  margin-top: 46px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp .9s 1.1s forwards;
}

.hero-badge {
  text-align: center;
  position: relative;
  padding: 0 4px;
}

.hero-badge+.hero-badge::before {
  content: '';
  position: absolute;
  left: calc(-1 * clamp(8px, 2vw, 25px));
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 28px;
  background: rgba(201, 164, 74, .22);
}

.hero-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 300;
  color: var(--gold);
  display: block;
}

.hero-badge-label {
  font-size: clamp(.52rem, .65vw, .62rem);
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: 3px;
  max-width: 86px;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2.2s ease-in-out infinite;
}

.hero-scroll span {
  font-size: .56rem;
  letter-spacing: .22em;
  color: var(--muted);
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ── ABOUT ── */
#about {
  padding: clamp(70px, 10vw, 0px) 0;
  background: var(--cream);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.section-eyebrow {
  font-size: .6rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--vxa-montserrat);
  font-weight: 600;
}


.section-eyebrow::before {
  content: '';
  display: block;
  width: 26px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform .6s .3s;
}

.reveal.visible .section-eyebrow::before {
  transform: scaleX(1);
}

.about-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.6vw, 45px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--deep);
  font-size: 30px;
}

.about-headline em {
  font-style: italic;
}

.about-body {
  font-size: .93rem;
  line-height: 2;
  color: var(--muted);
  margin-top: 24px;
  font-family: var(--vxa-montserrat);
  font-weight: 100;
  position: relative;
  left: 10px;
}

.about-body-items li {
  font-size: .93rem;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 10px;
  font-family: var(--vxa-montserrat);
  font-weight: 100;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  font-size: .67rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--deep);
  text-decoration: none;
  transition: color 1s, gap .3s;
}

.about-cta span {
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  font-weight: 900;
  border: 1px solid black;
  padding: 11px 20px;
  border-radius: 2px;
  margin-top: -19px;
  transition: all 0.3s ease;
}

/* .about-cta::after {
  content: '→';
  transition: transform .3s;
} */

.about-cta:hover {
  color: var(--gold);
  gap: 16px;
}

.about-cta span:hover {
  border: 1px solid var(--gold);
  transition: all 0.3s ease;
}





/* Dark stat card */
.about-card {
  background: var(--deep);
  padding: clamp(32px, 4.5vw, 58px) clamp(26px, 3.5vw, 48px);
  position: relative;
  overflow: hidden;
  transition: transform .6s ease;
  transform: perspective(800px) rotateY(2deg);
}

.about-card:hover {
  transform: perspective(800px) rotateY(0);
}

.about-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 164, 74, .16), transparent 65%);
}

.about-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}

.about-card .scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(201, 164, 74, .12), transparent);
  animation: scanLine 4s linear infinite;
  pointer-events: none;
}

.about-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 26px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-num {
  font-family: var(--vxa-montserrat);
  font-size: clamp(1.9rem, 2.8vw, 1.8rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-unit {
  font-size: .78rem;
  color: var(--gold);
  margin-left: 1px;
}

.stat-desc {
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .32);
  margin-top: 5px;
  font-family: var(--vxa-montserrat);
}

.connectivity-list {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(201, 164, 74, .1);
}

.connectivity-label {
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .26);
  margin-bottom: 12px;
  font-family: var(--vxa-montserrat);
}

.conn-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  transition: padding-left .3s;
}

.conn-item:hover {
  padding-left: 6px;
}

.conn-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2.5s infinite;
}

.conn-text {
  font-size: .76rem;
  color: rgba(255, 255, 255, .42);
}

/* ── AMENITIES ── */
#amenities {
  padding: clamp(70px, 10vw, 130px) 0;
  background: var(--deep);
  position: relative;
  overflow: hidden;

}

#amenities {
  position: relative;
  --bg-word: "AMENITIES";
}


#amenities::before {
  content: var(--bg-word);
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(60px, 13vw, 190px);
  color: rgba(201, 164, 74, 0.04);
  font-weight: 600;
  bottom: -15px;
  right: -8px;
  letter-spacing: -.02em;
  user-select: none;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity .45s ease, transform .45s ease;
  will-change: opacity, transform;
}



#amenities.word-out::before {
  opacity: 0;
  transform: translateY(18px) scale(1.04);
}

#amenities.word-in::before {
  animation: amenitiesWordIn .6s ease;
}

@keyframes amenitiesWordIn {
  0% {
    opacity: 0;
    transform: translateY(-18px) scale(.96);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#amenities .container {
  position: relative;
  z-index: 1;
}

.amenities-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 62px);
}

.section-label {
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4.8vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.gold-line {
  width: 46px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto 0;
}

.collage {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: 255px 255px;
  gap: 10px;
  max-width: 1060px;
  margin: 0 auto;
}

.collage-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .4s;
}

.collage-item:hover {
  box-shadow: 0 0 0 2px var(--gold);
}

/* Big left image */
.collage-item:nth-child(1) {
  grid-row: 1 / 3;
}

/* top row */
.collage-item:nth-child(2) {
  grid-column: 2;
}

.collage-item:nth-child(3) {
  grid-column: 3;
}

/* bottom row */
.collage-item:nth-child(4) {
  grid-column: 2;
}

/* if 5th exists */
.collage-item:nth-child(5) {
  grid-column: 3;
}

/* if 5th DOES NOT exist */
.collage-item:nth-child(4):last-child {
  grid-column: 2 / 4;
}



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

  .collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .collage-item {
    grid-column: auto !important;
    grid-row: auto !important;
    aspect-ratio: 16 / 9;
    height: 100%;
    margin: auto;
    width: 100%;
  }

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

}



.ph-1 {
  background: linear-gradient(135deg, #0d2030, #051018);
}

.ph-2 {
  background: linear-gradient(135deg, #200d1a, #100008);
}

.ph-3 {
  background: linear-gradient(135deg, #0d2015, #051008);
}

.ph-4 {
  background: linear-gradient(135deg, #1a1a0d, #0c0c04);
}

.ph-5 {
  background: linear-gradient(135deg, #1a100d, #0c0804);
}

.collage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.25, .8, .25, 1), filter .6s;
  filter: brightness(.8) saturate(.85);
}

.collage-item:hover .collage-img {
  transform: scale(1.08);
  filter: brightness(.95) saturate(1.1);
}

.collage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 6, 2, .76) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 22px;
  transition: background .4s;
}

.collage-item:hover .collage-overlay {
  background: linear-gradient(to top, rgba(20, 6, 2, .88) 0%, transparent 60%);
}

.collage-label {
  font-size: .57rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.collage-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  font-weight: 400;
  color: #fff;
  margin-top: 4px;
  transform: translateY(6px);
  transition: transform .4s;
}

.collage-item:hover .collage-name {
  transform: translateY(0);
}

.amenity-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 52px;
  opacity: .2;
  transition: opacity .4s, transform .4s;
}

.collage-item:hover .amenity-icon {
  opacity: .32;
  transform: translate(-50%, -55%);
}

/* ── DEVELOPER ── */
#developer {
  padding: clamp(70px, 10vw, 130px) 0;
  background: var(--cream);
}

.developer-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

.developer-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.developer-line {
  width: 56px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
}

.developer-legacy {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: var(--deep);
  line-height: 1;
}

.developer-legacy span {
  color: var(--gold);
}

.developer-legacy-label {
  font-size: .6rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
}

.developer-body {
  font-size: .92rem;
  line-height: 2;
  color: var(--muted);
  margin-top: 18px;
}

.developer-pillars {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.pillar {
  border: 1px solid rgba(201, 164, 74, .28);
  padding: 9px 16px;
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: color .35s;
}

.pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
  z-index: 0;
}

.pillar:hover::before {
  transform: scaleX(1);
}

.pillar span {
  position: relative;
  z-index: 1;
}

.pillar:hover {
  color: var(--deep);
}

/* ── CONTACT ── */
#contact {
  padding: clamp(70px, 10vw, 130px) 0;
  background: var(--deep);
  position: relative;
  overflow: hidden;
}

.contact-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 164, 74, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 164, 74, .032) 1px, transparent 1px);
  background-size: 55px 55px;
}

.contact-bg-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 164, 74, .07), transparent 65%);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

.contact-bg-glow2 {
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 31, 58, .1), transparent 65%);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-header {
  text-align: center;
  margin-bottom: clamp(32px, 4.5vw, 54px);
}

.contact-sub {
  font-size: .86rem;
  color: rgb(190 190 190);
  margin-top: 14px;
  line-height: 1.75;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-label {
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: white
}

.form-control-custom {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgb(201 164 74 / 47%);
  color: #fff;
  padding: 13px 16px;
  font-family: 'Jost', sans-serif;
  font-size: .87rem;
  outline: none;
  width: 100%;
  transition: border-color .35s, background .35s, transform .22s;
  -webkit-appearance: none;
}

.form-control-custom::placeholder {
  color: rgba(255, 255, 255, .17);
}

.form-control-custom:focus {
  border-color: var(--gold);
  background: rgba(201, 164, 74, .055);
  transform: translateY(-1px);
}

select.form-control-custom option {
  background: #1a0f08;
  color: #fff;
}

.form-submit {
  background: var(--gold);
  color: var(--cream);
  border: none;
  padding: 16px 40px;
  font-family: 'Jost', sans-serif;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-top: 4px;
  transition: background .35s, transform .25s, box-shadow .35s;
}

.form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .24), transparent);
  transition: left .55s;
}

.form-submit:hover::before {
  left: 100%;
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 164, 74, .28);
}

.form-submit:active {
  transform: translateY(0);
}

.contact-info-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3.5vw, 42px);
  margin-top: clamp(36px, 5vw, 58px);
  flex-wrap: wrap;
  row-gap: 22px;
}

.cinfo-item {
  text-align: center;
}

.cinfo-label {
  font-size: .56rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.cinfo-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: .98rem;
  color: rgba(255, 255, 255, .58);
}

.cinfo-divider {
  width: 1px;
  height: 34px;
  background: rgba(201, 164, 74, .16);
}

/* ── FOOTER ── */
footer {
  background: #0d0704;
  padding: 26px clamp(18px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-rera {
  font-size: .56rem;
  letter-spacing: .07em;
  color: rgba(255, 255, 255, .2);
  line-height: 1.65;
  max-width: 400px;
}

.footer-copy {
  font-size: .56rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .17);
}

/* ── LIGHTBOX ── */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 4, 2, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: background .4s ease, opacity .4s ease;
}

#lightbox.open {
  background: rgba(10, 4, 2, .94);
  opacity: 1;
  pointer-events: all;
  z-index: 9999;
}

.lb-backdrop {
  position: absolute;
  inset: 0;
  cursor: zoom-out;
}

.lb-panel {
  position: relative;
  z-index: 2;
  max-width: min(860px, 92vw);
  width: 100%;
  transform: scale(.88) translateY(24px);
  opacity: 0;
  transition: transform .45s cubic-bezier(.34, 1.56, .64, 1), opacity .4s ease;
}

#lightbox.open .lb-panel {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.lb-panel::before,
.lb-panel::after {
  content: '';
  position: absolute;
  width: 36px;
  height: 36px;
  border-color: rgba(201, 164, 74, .5);
  border-style: solid;
  z-index: 3;
  pointer-events: none;
}

.lb-panel::before {
  top: -8px;
  left: -8px;
  border-width: 2px 0 0 2px;
}

.lb-panel::after {
  bottom: -8px;
  right: -8px;
  border-width: 0 2px 2px 0;
}

.lb-inner {
  position: relative;
  overflow: hidden;
  background: var(--deep);
}

.lb-inner::before,
.lb-inner::after {
  content: '';
  position: absolute;
  width: 36px;
  height: 36px;
  border-color: rgba(201, 164, 74, .5);
  border-style: solid;
  z-index: 3;
  pointer-events: none;
}

.lb-inner::before {
  top: -8px;
  right: -8px;
  border-width: 2px 2px 0 0;
}

.lb-inner::after {
  bottom: -8px;
  left: -8px;
  border-width: 0 0 2px 2px;
}

.lb-visual {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lb-visual-bg {
  position: absolute;
  inset: 0;
  transition: transform 8s ease;
}

#lightbox.open .lb-visual-bg {
  transform: scale(1.04);
}

.lb-visual-icon {
  position: relative;
  z-index: 2;
  opacity: .18;
  transition: opacity .4s;
}

.lb-shimmer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}

.lb-info {
  padding: clamp(20px, 3vw, 32px) clamp(20px, 3.5vw, 36px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

#lightbox.no-text .lb-info {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 0;
  margin: 0;
  gap: 0;
  display: inline-flex;
  background: transparent;
}

#lightbox.no-text .lb-texts {
  display: none;
}

#lightbox.no-text .lb-close {
  background: rgba(10, 4, 2, .55);
  border-color: rgba(201, 164, 74, .5);
  color: rgba(255, 255, 255, .8);
}

.lb-tag {
  display: none;
}

.lb-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
}

.lb-desc {
  font-size: 14px;
  color: var(--gold-light);
  margin-top: 10px;
  line-height: 1.7;
  max-width: 420px;
}

.lb-close {
  background: none;
  border: 1px solid rgba(201, 164, 74, .3);
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, .55);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, border-color .3s, color .3s;
}

.lb-close:hover {
  background: rgba(201, 164, 74, .12);
  border-color: var(--gold);
  color: #fff;
}

.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 4, 2, .55);
  border: 1px solid rgba(201, 164, 74, .25);
  color: rgba(255, 255, 255, .7);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 1.1rem;
  transition: background .3s, border-color .3s, color .3s, transform .3s;
}

.lb-arrow:hover {
  background: rgba(201, 164, 74, .18);
  border-color: var(--gold);
  color: #fff;
}

.lb-arrow.prev {
  left: 20px;
}

.lb-arrow.next {
  right: 20px;
}

.lb-arrow.prev:hover {
  transform: translateY(-50%) translateX(-3px);
}

.lb-arrow.next:hover {
  transform: translateY(-50%) translateX(3px);
}

.lb-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 0 6px;
}

.lb-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  cursor: pointer;
  transition: background .3s, transform .3s;
  border: none;
  padding: 0;
}

.lb-dot.active {
  background: var(--gold);
  transform: scale(1.35);
}

/* ── TOAST ── */
#toast {
  position: fixed;
  bottom: clamp(18px, 3.5vw, 38px);
  right: clamp(14px, 3.5vw, 38px);
  z-index: 1000;
  background: var(--gold);
  color: var(--deep);
  padding: 14px 24px;
  font-family: 'Jost', sans-serif;
  font-size: .76rem;
  letter-spacing: .1em;
  transform: translateY(100px);
  opacity: 0;
  transition: all .45s cubic-bezier(.34, 1.56, .64, 1);
  pointer-events: none;
  max-width: calc(100vw - 28px);
}

#toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  #mainNav {
    padding: 15px 22px;
  }

  #mainNav.scrolled {
    padding: 11px 22px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-corner {
    width: 38px;
    height: 38px;
  }

  .hero-corner.tl {
    top: 70px;
    left: 18px;
  }

  .hero-corner.tr {
    top: 70px;
    right: 18px;
  }

  .hero-corner.bl,
  .hero-corner.br {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about-card {
    transform: none !important;
  }

  .collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 190px 190px 190px;
  }

  .collage-item:nth-child(1) {
    grid-row: auto;
    grid-column: 1 / 3;
  }

  .collage-item:nth-child(4) {
    grid-column: 1 / 3;
  }

  .developer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .developer-logo-wrap {
    align-items: center;
    text-align: center;
  }

  .developer-line {
    margin: 0 auto;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cinfo-divider {
    display: none;
  }

  .lb-arrow.prev {
    left: 8px;
  }

  .lb-arrow.next {
    right: 8px;
  }

  .lb-arrow {
    top: auto;
    bottom: calc(50% - 20px);
  }
}

@media (max-width: 575px) {
  #hero {
    padding: 88px 18px 68px;
  }

  .hero-badges {
    gap: 14px;
  }

  .hero-badge+.hero-badge::before {
    display: none;
  }

  .hero-badge {
    padding: 0 8px;
  }

  .about-card {
    padding: 28px 20px;
  }

  .about-stats {
    gap: 18px;
  }

  .collage {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 175px);
  }

  .collage-item:nth-child(1),
  .collage-item:nth-child(4) {
    grid-column: auto;
  }

  .contact-inner {
    padding: 0 14px;
  }

  .contact-sub br {
    display: none;
  }

  .developer-pillars {
    justify-content: center;
  }

  .hero-scroll {
    display: none;
  }

  .hero-corner {
    display: none;
  }
}






/* BANNER  */

.k9m2-shell {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding-top: 70px; */
}

.q7r4-banner {
  position: relative;
  width: 100%;
  max-width: 1902px;
  height: 750px;
  background: #fff8eb;
  color: var(--vxa-text);
  overflow: hidden;
  margin: 0 auto;
}

/* top left logo */
.n4x1-logo-box {
  position: absolute;
  top: 42px;
  left: 34px;
  width: 225px;
  z-index: 3;
}

.n4x1-logo-box img {
  display: block;
  width: 50%;
  height: auto;
}

/* center symbol */
.b6t8-mark-box {
  position: absolute;
  top: 140px;
  left: 200px;
  width: 640px;
  z-index: 1;
  display: block;
}

.b6t8-mark-box img {
  display: block;
  width: 75%;
  height: auto;
}

/* top right info */
.w3p6-top-right {
  position: absolute;
  top: 30px;
  right: 122px;
  width: 470px;
  text-align: right;
  font-family: var(--vxa-montserrat);
  font-size: 7px;
  line-height: 1.42;
  color: var(--vxa-text);
  z-index: 3;
}

.w3p6-top-right .s1d4-launch {
  font-weight: 700;
}

.c8f2-qr-box {
  position: absolute;
  top: 30px;
  right: 35px;
  width: 100px;
  height: 100px;
  z-index: 3;
}

.mob-logo-container {
  display: none !important;
}

.c8f2-qr-box img {
  display: block;
  width: 100%;
  height: 64%;
  object-fit: contain;
}

/* right content */
.m5v9-content-box {
  position: absolute;
  top: 193px;
  right: 150px;
  width: 820px;
  text-align: center;
  z-index: 2;
}

.h2q8-title-main {
  font-family: var(--vxa-serif);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 56px;
  line-height: 0.79px;
  letter-spacing: 1px;
  color: var(--vxa-text);
}

.h2q8-title-main span {
  display: block;
  font-family: var(--vxa-sans);
  line-height: 4.0rem;
}

.h2q8-title-main span+span {
  margin-top: 10px;
}

.r4n7-location-wrap {
  margin-top: 36px;
  text-align: center;
  text-transform: uppercase;
  color: var(--vxa-text);
  font-family: var(--vxa-sans);
}

.u3c1-sector-text {
  font-size: 32px;
  letter-spacing: 6px;
  line-height: 0.5;
  font-family: var(--vxa-gotham);
}

.y8k5-road-text {
  margin-top: 16px;
  font-size: 37px;
  letter-spacing: 2px;
  line-height: 1.08;
  font-family: var(--vxa-gotham);
  background: linear-gradient(319deg, #653400, #b28811, #ddbe0f, #733b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.p1z6-reveal-wrap {
  width: 720px;
  margin: 45px auto 0;
}

.e7m3-divider {
  width: 58%;
  height: 2px;
  background: linear-gradient(319deg, #653400, #b28811, #ddbe0f, #733b00);
  margin: auto;
}

.d5w2-reveal-text {
  font-family: var(--vxa-gotham);
  text-transform: uppercase;
  text-align: center;
  font-size: 22px;
  letter-spacing: 0px;
  line-height: 0.5;
  padding: 20px 0 20px;
  color: var(--vxa-text);
}

/* tablet */
@media (max-width: 1400px) {
  .q7r4-banner {
    height: auto;
    aspect-ratio: 1902 / 1030;
  }

  .n4x1-logo-box {
    top: 30px;
    left: 24px;
    width: 185px;
  }

  .b6t8-mark-box {
    top: 150px;
    left: 110px;
    width: 520px;
  }




  .w3p6-top-right {
    top: 24px;
    right: 92px;
    width: 390px;
    font-size: 7px;
  }

  .c8f2-qr-box {
    top: 28px;
    right: 22px;
    width: 82px;
    height: 82px;
  }

  .m5v9-content-box {
    top: 195px;
    right: 95px;
    width: 640px;
  }

  /* .h2q8-title-main {
    font-size: 88px;
  } */

  .r4n7-location-wrap {
    margin-top: 54px;
  }

  .u3c1-sector-text,
  .y8k5-road-text {
    font-size: 28px;
    letter-spacing: 4px;
  }

  .p1z6-reveal-wrap {
    width: 565px;
    margin-top: 34px;
  }

  .d5w2-reveal-text {
    font-size: 16px;
    letter-spacing: 2px;
    padding: 18px 0;
  }
}

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

  .k9m2-shell {
    width: 100%;
  }

  .q7r4-banner {
    height: auto;
    /* min-height: 82vh; */
    aspect-ratio: auto;
    padding: 26px 20px 42px;
  }

  .n4x1-logo-box,
  .b6t8-mark-box,
  .w3p6-top-right,
  .c8f2-qr-box,
  .m5v9-content-box {
    position: static;
  }

  .x6j4-top-flex {
    position: relative;
    min-height: 115px;
  }

  .n4x1-logo-box {
    width: 118px;
  }

  .w3p6-top-right-wrap {
    position: absolute;
    top: 15px;
    right: 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .n4x1-logo-box img {
    width: 60%;
  }

  .w3p6-top-right {
    width: 230px;
    text-align: right;
    font-size: 8px;
    line-height: 1.35;
  }

  .c8f2-qr-box {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
  }

  .b6t8-mark-box {
    width: 345px;
    max-width: 92%;
    margin: 34px auto 0;
  }

  .m5v9-content-box {
    width: 100%;
    margin-top: 34px;
    text-align: center;
  }


  .h2q8-title-main {
    font-size: 58px;
    line-height: 0.93;
    letter-spacing: 0.5px;
  }

  .h2q8-title-main span+span {
    margin-top: -12px;
  }

  .r4n7-location-wrap {
    margin-top: 42px;
  }

  .mob-logo-container {
    display: flex !important;
    justify-content: center;
  }

  .mob-logo-container img {
    width: 151px;
  }

  .u3c1-sector-text {
    font-size: 30px;
    letter-spacing: 7px;
  }

  .y8k5-road-text {
    margin-top: 12px;
    font-size: 30px;
    letter-spacing: 5px;
  }

  .p1z6-reveal-wrap {
    width: 78%;
    margin-top: 36px;
  }

  .d5w2-reveal-text {
    font-size: 31px;
    letter-spacing: 5px;
    padding: 14px 0 13px;
  }
}

/* small mobile */
@media (max-width: 480px) {
  .q7r4-banner {
    padding: 22px 16px 38px;
  }

  .x6j4-top-flex {
    min-height: 102px;
  }

  .n4x1-logo-box {
    width: 102px;
  }

  .w3p6-top-right-wrap {
    gap: 8px;
  }

  .w3p6-top-right {
    width: 195px;
    font-size: 4.8px;
    line-height: 1.32;
  }

  .c8f2-qr-box {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .b6t8-mark-box {
    width: 285px;
    margin-top: 26px;
    display: none;
  }

  .m5v9-content-box {
    margin-top: 28px;
  }

  .h2q8-title-main {
    font-size: 34px;
  }

  .h2q8-title-main span+span {
    margin-top: -10px;
  }

  .r4n7-location-wrap {
    margin-top: 16px;
  }

  .u3c1-sector-text {
    font-size: 19px;
    letter-spacing: 5px;
  }

  .y8k5-road-text {
    margin-top: 10px;
    font-size: 19px;
    letter-spacing: 4px;
  }

  .p1z6-reveal-wrap {
    width: 82%;
    margin-top: 30px;
  }

  .d5w2-reveal-text {
    font-size: 16px;
    letter-spacing: 2px;
    padding: 8px 0;
    line-height: 22px;
  }

  .e7m3-divider {
    width: 73%;
  }
}


/* END BANNER */


.error-side,
.error-modal {
  display: none;
  color: red;
  font-size: 13px;
  position: absolute;
  right: 20px;
  top: 50px;
}

.error {
  border: 2px solid red !important;
  animation: .2s linear .1s 5 alternate error
}



button:disabled {
  opacity: .5;
  cursor: not-allowed;
}


.footerterms-and-condition-block {
  margin-left: 10px;
  color: #fff;
  font-size: 12px;
}

.check-box,
.sidecheck-box {
  left: 0;
  top: 25px;
  background: #2b1d15;
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  font-size: 12px;
  z-index: 5;
}




.arx-footer-wrap {
  background: linear-gradient(180deg, #22180d 0%, #120d07 100%);
  border-top: 1px solid rgba(201, 164, 74, 0.28);
  padding: 32px 20px 28px;
  position: relative;
  overflow: hidden;
}

.arx-footer-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(201, 164, 74, 0.10), transparent 32%),
    radial-gradient(circle at bottom right, rgba(255, 240, 200, 0.05), transparent 28%);
  pointer-events: none;
}

.arx-footer-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #d8c6a3;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.2px;
}

.arx-footer-company {
  margin: 0 0 12px;
  color: #f4e7c8;
  font-weight: 500;
}

.arx-footer-text {
  margin: 0 0 10px;
  color: rgba(244, 231, 200, 0.78);
}

.arx-footer-label {
  color: #d0a851;
  font-weight: 600;
}

.arx-footer-wrap a {
  color: #e0b864;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.arx-footer-wrap a:hover {
  color: #fff2cf;
  border-bottom-color: rgba(224, 184, 100, 0.55);
}

.arx-footer-links {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 164, 74, 0.18);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.arx-footer-links a {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.arx-footer-links span {
  color: rgba(201, 164, 74, 0.45);
}

/* mobile */
@media (max-width: 767px) {
  .arx-footer-wrap {
    padding: 24px 16px 22px;
  }

  .arx-footer-inner {
    font-size: 12px;
    line-height: 1.7;
  }

  .arx-footer-company {
    font-size: 12px;
  }

  .arx-footer-links {
    margin-top: 14px;
    padding-top: 14px;
    gap: 8px;
    padding-bottom: 40px;
  }

  .arx-footer-links a {
    font-size: 12px;
    letter-spacing: 0.8px;
  }

}



input::placeholder,
textarea::placeholder {
  color: #a6a6a6 !important;
  /* luxury gold color */
  opacity: 1;
}




#lbBg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}





.b6t8-mark-box img,
.mob-logo-container img {
  animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}





.amenities-carousel-wrap {
  position: relative;
}

.amenities-scroll-hint {
  position: absolute;
  right: -51px;
  top: 54%;
  transform: translateY(calc(-50% + 40px));
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(201, 164, 74, .65);
  font-family: var(--vxa-gotham);
  text-align: center;
  line-height: 1.5;
  max-width: none;
  pointer-events: none;
  z-index: 6;
}

.amenity-section-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: 1px solid rgba(201, 164, 74, .45);
  background: rgba(10, 4, 2, .68);
  color: #c9a44a;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all .35s ease;
  backdrop-filter: blur(6px);
}

.amenity-section-nav:hover {
  background: #c9a44a;
  color: #140a06;
  border-color: #c9a44a;
}

.amenity-section-prev {
  left: -26px;
}

.amenity-section-next {
  right: -26px;
}

#amenitiesCollage {
  transition: opacity .45s ease, transform .45s ease;
}

#amenitiesCollage.is-switching {
  opacity: .35;
  transform: translateY(10px);
}

.collage-item {
  position: relative;
  overflow: hidden;
}

.collage-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.collage-item:hover img {
  transform: scale(1.05);
}

.amenity-section-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.amenity-section-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(201, 164, 74, .5);
  background: transparent;
  cursor: pointer;
  transition: all .3s ease;
}

.amenity-section-dot.active {
  background: #c9a44a;
  border-color: #c9a44a;
  transform: scale(1.15);
}

@media (max-width: 991px) {
  .amenity-section-prev {
    left: 10px;
  }

  .amenity-section-next {
    right: 10px;
  }

  .amenity-section-nav {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .amenities-scroll-hint {
    display: none;
  }


  .amenities-carousel-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 12px 16px;
    align-items: center;
  }

  #amenitiesCollage {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .amenity-section-nav {
    position: static;
    transform: none;
  }

  .amenity-section-prev {
    grid-column: 1;
    grid-row: 3;
    justify-self: end;
  }

  .amenity-section-next {
    grid-column: 2;
    grid-row: 3;
    justify-self: start;
  }

  .amenities-scroll-hint {
    position: static;
    transform: none;
    grid-column: 1 / 3;
    grid-row: 2;
    justify-self: center;
    text-align: center;
    margin-top: 2px;
    font-size: .55rem;
    letter-spacing: .2em;
  }



  .about-body {
    text-align: justify;
  }

  .developer-body {
    text-align: justify;
  }

  .pillar {
    font-size: .48rem;
    font-weight: 600;
  }

}



#amenitiesCollage,
.amenities-header {
  transition: transform .45s ease, opacity .45s ease;
  will-change: transform, opacity;
}

.amenities-anim-out-next {
  opacity: 0;
  transform: translateX(-70px);
}

.amenities-anim-in-next {
  opacity: 0;
  transform: translateX(70px);
}

.amenities-anim-out-prev {
  opacity: 0;
  transform: translateX(70px);
}

.amenities-anim-in-prev {
  opacity: 0;
  transform: translateX(-70px);
}



.slide-right {
  -webkit-animation: slide-right 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: slide-right 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-right {
  0% {
    transform: translateX(-120px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}



.slide-left {
  animation: slide-left 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-left {
  0% {
    transform: translateX(120px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}





.amenities-header,
#amenitiesCollage {
  will-change: transform, opacity;
}

/* NEXT: old content goes left, new content comes from right */
.content-out-next {
  animation: contentOutNext .45s ease forwards;
}

.content-in-next {
  animation: contentInNext .55s ease forwards;
}

/* PREV: old content goes right, new content comes from left */
.content-out-prev {
  animation: contentOutPrev .45s ease forwards;
}

.content-in-prev {
  animation: contentInPrev .55s ease forwards;
}

@keyframes contentOutNext {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-70px);
  }
}

@keyframes contentInNext {
  0% {
    opacity: 0;
    transform: translateX(70px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes contentOutPrev {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(70px);
  }
}

@keyframes contentInPrev {
  0% {
    opacity: 0;
    transform: translateX(-70px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}



@media (max-width: 1420px) {

  .amenity-section-nav {
    width: 56px;
    height: 56px;
  }

  .amenity-section-prev {
    left: -44px;
  }

  .amenity-section-next {
    right: -44px;
  }

  .amenities-scroll-hint {
    right: -62px;
    top: 52%;
    font-size: .48rem;
  }




}


.amenities-scroll-mob {
  transform: translateY(calc(-50% + 25px));
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(201, 164, 74, .65);
  font-family: var(--vxa-gotham);
  text-align: center;
  /* line-height: 1.5; */
  max-width: none;
  pointer-events: none;
  z-index: 6;
  display: flex;
  /* flex-wrap: wrap; */
  width: 100%;
  justify-content: center;
}



@media (min-width: 991px) {
  .amenities-scroll-mob {
    display: none;
  }
}





/* =========================
   STICKY ENQUIRE BUTTONS
========================= */

@keyframes enquirePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(177, 138, 70, 0.7);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(177, 138, 70, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(177, 138, 70, 0);
  }
}




.floating-enquire,
.mobile-enquire {
  font-family: inherit;
  border: 0;
  cursor: pointer;
  transition: all .3s ease;
  z-index: 9999;
  background: linear-gradient(135deg, #b18a46 0%, #8f6b32 100%);
  color: #fff8ea;
  letter-spacing: .14em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .22);

}


.floating-enquire {
  animation: enquirePulse 2.2s infinite;
}

.floating-enquire:hover,
.mobile-enquire:hover {
  transform: translateY(2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
}

.floating-enquire {
  position: fixed;
  right: 18px;
  bottom: 22px;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 2px;
  min-width: 160px;
}

.mobile-enquire {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 16px 18px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 0;
}

/* =========================
   MODAL
========================= */
.luxury-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, visibility .35s ease;
}

.luxury-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.luxury-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 8, 4, .72);
  backdrop-filter: blur(5px);
}

.luxury-modal-dialog {
  position: relative;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%) scale(.96);
  transition: transform .35s ease;
}

.luxury-modal.active .luxury-modal-dialog {
  transform: translateY(-50%) scale(1);
}

.luxury-modal-dialog-center {
  width: min(92vw, 620px);
}

.luxury-modal-content {
  background: #f2eee4;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .28);
  border: 1px solid rgba(145, 110, 54, .18);
}

.luxury-modal-content-center {
  min-height: auto;
}

.luxury-modal-left {
  color: #5e4635;
}

.luxury-modal-left-center {
  padding: 40px 34px 32px;
  background:
    radial-gradient(circle at top right, rgba(177, 138, 70, .08), transparent 32%),
    #f2eee4;
}

.luxury-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(33, 18, 10, .82);
  color: #f4e8cf;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  transition: all .28s ease;
}

.luxury-modal-close:hover {
  background: #8f6b32;
  transform: rotate(90deg);
}

.luxury-modal-tag {
  display: inline-block;
  margin-bottom: 12px;
  color: #b38b47;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 10px;
  position: relative;
  padding-left: 16px;
}

.luxury-modal-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 1px;
  background: #c9a44a;
  transform: translateY(-50%);
}

.luxury-modal-left h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.05;
  font-weight: 500;
  color: #5a4032;
}

.luxury-modal-left h3 em {
  font-style: italic;
  color: #b38b47;
  font-weight: 500;
}

.luxury-modal-left>p {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(88, 62, 46, .86);
}

.luxury-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.luxury-field {
  display: flex;
  flex-direction: column;
  position: relative;
}

.luxury-full {
  grid-column: 1 / -1;
}

.luxury-field label {
  margin-bottom: 7px;
  font-size: 10px;
  color: #8f6b32;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.luxury-field input {
  width: 100%;
  border: 1px solid rgba(146, 109, 65, .26);
  background: rgba(255, 255, 255, .55);
  color: #4a3528;
  padding: 13px 14px;
  font-size: 13px;
  outline: 0;
  border-radius: 0;
  transition: border-color .28s ease, box-shadow .28s ease, background .28s ease;
}

.luxury-field input::placeholder {
  color: rgba(89, 63, 45, .58);
}

.luxury-field input:focus {
  border-color: #b38b47;
  box-shadow: 0 0 0 4px rgba(179, 139, 71, .09);
  background: #fff;
}

.luxury-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(88, 62, 46, .82);
}

.luxury-check input {
  accent-color: #b38b47;
  margin-top: 2px;
}

.luxury-submit-btn {
  margin-top: 18px;
  width: 100%;
  border: 0;
  background: linear-gradient(135deg, #b18a46 0%, #8b6a34 100%);
  color: #fff8ea;
  padding: 15px 18px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
}

.luxury-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(155, 119, 56, .26);
}

/* visibility */
.desktop-only {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-only {
  display: none;
}

/* tablet */
@media (max-width: 991px) {
  .luxury-modal-dialog-center {
    width: min(94vw, 560px);
  }

  .luxury-modal-left-center {
    padding: 34px 24px 26px;
  }

  .luxury-form-grid {
    grid-template-columns: 1fr;
  }

  .luxury-full {
    grid-column: auto;
  }
}

/* mobile */
@media (max-width: 767px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }

  .luxury-modal-dialog-center {
    width: calc(100vw - 18px);
  }

  .luxury-modal-content {
    max-height: calc(100vh - 20px);
    overflow-y: auto;
  }

  .luxury-modal-left-center {
    padding: 28px 16px 22px;
  }

  .luxury-modal-left h3 {
    font-size: 34px;
  }

  .luxury-modal-left>p {
    font-size: 13px;
    line-height: 1.7;
  }

  .luxury-field input {
    padding: 13px 12px;
    font-size: 13px;
  }

  .mobile-enquire {
    padding: 15px 16px calc(15px + env(safe-area-inset-bottom));
  }
}


.phone-field-wrap {
  display: flex;
}

.phone-code {
  width: 70px !important;
  border: 1px solid rgba(146, 109, 65, .26);
  background: #eee8dc;
  text-align: center;
  font-size: 13px;
  border-right: none;
  cursor: not-allowed;
  color: #a0a0a0 !important;
}

.phone-input {
  flex: 1;
  border: 1px solid rgba(146, 109, 65, .26);
  padding: 13px 14px;
  font-size: 13px;
  width: 100%;
}

.ivr-call-btn {
  position: fixed;
  left: 15px;
  /* top: 50%; */
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: #b08a4a;
  /* gold color matching your design */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  bottom: 0%;
}

.ivr-call-btn:hover {
  background: #8a6a36;
  transform: translateY(-50%) scale(1.08);
}


.mobile-bottom-bar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
}

.mobile-bottom-bar .ivr-mobile-enquire {
  width: 50%;
  height: 58px;
  border: 0;
  margin: 0;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff8ea;
  background: #b18a46;
  transition: all .3s ease;
  cursor: pointer;
}

.mobile-bottom-bar .enquire-btn {
  border-right: 1px solid white;
}

.mobile-bottom-bar .contact-btn span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 100%;
}

.mobile-bottom-bar .contact-btn i {
  font-size: 16px;
}

.mobile-bottom-bar .ivr-mobile-enquire:hover,
.mobile-bottom-bar .ivr-mobile-enquire:focus {
  background: linear-gradient(135deg, #c39a50 0%, #9b7537 100%);
  color: #ffffff;
}

@media (min-width: 768px) {
  .mobile-bottom-bar {
    display: none;
  }
}