:root {
  --green: #1b3022;
  --green-deep: #121f16;
  --green-mid: #2a4533;
  --gold: #755b41;
  --gold-soft: #c4b09a;
  --cream: #ebe0d0;
  --ivory: #f6f0e6;
  --ink: #1b3022;
  --muted: #6b5e52;
  --line: rgba(117, 91, 65, 0.35);
  --white: #fff;
  --shadow: 0 24px 60px rgba(27, 48, 34, 0.14);
  --radius: 14px;
  --header: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Outfit, sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

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

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

button,
input,
select {
  font-family: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

h1,
h2,
h3 {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.2rem, 5.2vw, 4.4rem);
  color: var(--cream);
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  color: var(--green);
}

h3 {
  font-size: 1.45rem;
}

.section {
  padding: 110px 0;
}

.section__index {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
}

.section__head {
  margin-bottom: 56px;
  max-width: 720px;
}

.section__lead {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--gold-soft);
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  background: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.btn--gold {
  background: var(--cream);
  color: var(--gold);
}

.btn--gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.35) 50%, transparent 80%);
  transform: translateX(-120%);
}

.btn--gold:hover {
  background: var(--gold);
  color: var(--cream);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(117, 91, 65, 0.28);
}

.btn--gold:hover::after {
  animation: shimmer 0.8s var(--ease);
}

.btn--ghost {
  border-color: rgba(235, 224, 208, 0.55);
  color: var(--cream);
}

.btn--ghost:hover {
  background: var(--cream);
  color: var(--green);
}

.btn--outline {
  border-color: var(--green);
  color: var(--green);
}

.btn--outline:hover {
  background: var(--green);
  color: var(--white);
}

.btn--sm {
  padding: 10px 18px;
  font-size: 0.76rem;
}

.btn--block {
  width: 100%;
}

.text-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--green);
  letter-spacing: 0.04em;
  padding-bottom: 2px;
  position: relative;
  transition: color 0.3s var(--ease);
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.text-link:hover {
  color: var(--gold);
}

.text-link:hover::after {
  transform: scaleX(0);
  transform-origin: right;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header);
  background: var(--green);
  border-bottom: 1px solid rgba(117, 91, 65, 0.35);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.7s var(--ease);
  transform: translateY(-100%);
}

body.is-ready .header {
  transform: none;
}

.header.is-scrolled {
  background: var(--green-deep);
  box-shadow: 0 10px 30px rgba(18, 31, 22, 0.35);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 52px;
  width: auto;
  display: block;
  background: transparent;
  transition: transform 0.45s var(--ease);
}

.logo:hover img {
  transform: scale(1.04);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--cream);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a:not(.btn) {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s var(--ease);
}

.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

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

.nav a:not(.btn):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--white);
  transition: 0.3s var(--ease);
}

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

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

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

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s ease;
}

.hero__media img.is-active {
  opacity: 1;
  animation: kenburns 14s ease-out forwards;
}

.hero__dots {
  position: absolute;
  right: 28px;
  bottom: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  cursor: pointer;
  transition: 0.35s var(--ease);
}

.hero__dots button.is-active {
  height: 24px;
  background: var(--gold);
  border-color: var(--gold);
}

.hero__overlay {
  background:
    linear-gradient(180deg, rgba(27, 48, 34, 0.82) 0%, rgba(27, 48, 34, 0.28) 42%, rgba(27, 48, 34, 0.88) 100%);
}

.hero__shine {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 40%, rgba(232, 213, 163, 0.12) 50%, transparent 60%);
  animation: shineSweep 8s ease-in-out 1.4s infinite;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 110px;
  padding-top: calc(var(--header) + 36px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: end;
}

.hero__sub {
  max-width: 560px;
  margin: 22px 0 34px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
  font-size: 1.08rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-bottom: 36px;
}

.hero__meta span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
}

.hero__meta strong {
  font-family: Montserrat, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 22px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll span {
  display: block;
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 4px;
  margin: 8px auto 0;
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(8px);
  }
}

.overview__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.overview__copy p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

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

.stats article {
  background: var(--green);
  color: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius);
  min-height: 150px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.stats article:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(27, 48, 34, 0.28);
}

.stats article:nth-child(even) {
  background: var(--green-deep);
}

.stats strong {
  display: block;
  font-family: Montserrat, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 10px;
}

.stats span {
  font-size: 0.92rem;
  opacity: 0.82;
}

.highlights {
  background: var(--cream);
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
  min-height: 240px;
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.card__icon {
  transition: transform 0.45s var(--ease);
}

.card:hover .card__icon {
  transform: translateX(6px);
}

.card__icon {
  color: var(--gold);
  font-family: Montserrat, sans-serif;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 18px;
}

.card p {
  color: var(--muted);
  margin-top: 10px;
  font-size: 0.96rem;
}

.residences__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.plan {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(27, 48, 34, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.plan:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.plan--featured {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.plan--featured:hover {
  transform: translateY(-14px) scale(1.01);
}

.plan__visual {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

.plan:hover .plan__visual img {
  transform: scale(1.1);
}

.plan__tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--green-deep);
  color: var(--gold);
  padding: 6px 12px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan__body {
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.plan__body p {
  color: var(--muted);
  font-size: 0.95rem;
}

.plan__body ul {
  list-style: none;
  color: var(--green);
  font-size: 0.92rem;
}

.plan__body li + li {
  margin-top: 6px;
}

.plan__body li::before {
  content: "— ";
  color: var(--gold);
}

.plan__foot {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(27, 48, 34, 0.08);
}

.amenities {
  padding-top: 0;
  background: var(--green-deep);
  color: var(--cream);
}

.amenities h2,
.amenities h3 {
  color: var(--cream);
}

.amenities__banner {
  position: relative;
  height: 420px;
  margin-bottom: 56px;
  overflow: hidden;
}

.amenities__banner img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  will-change: transform;
}

.amenities__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27, 48, 34, 0.15), rgba(27, 48, 34, 0.82));
}

.amenities__banner-copy {
  position: absolute;
  inset: auto 0 48px;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.amenities__banner-copy p:last-child {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
}

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.amenities__grid article {
  padding: 8px 0 20px;
  border-top: 1px solid rgba(117, 91, 65, 0.25);
  transition: transform 0.4s var(--ease);
}

.amenities__grid article:hover {
  transform: translateY(-6px);
}

.amenities__grid ul {
  list-style: none;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.amenities__grid li {
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.amenities__grid li:hover {
  color: var(--gold-soft);
  transform: translateX(6px);
}

.amenities__grid li + li {
  margin-top: 8px;
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.location p {
  color: var(--muted);
  margin: 16px 0 28px;
}

.location__list {
  list-style: none;
  display: grid;
  gap: 18px;
}

.location__list li {
  padding-left: 18px;
  border-left: 2px solid var(--gold);
  color: var(--muted);
  font-size: 0.95rem;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}

.location__list li:hover {
  transform: translateX(8px);
  border-left-color: var(--green);
}

.location__list strong {
  display: block;
  color: var(--green);
  margin-bottom: 2px;
}

.location__map {
  height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.gallery {
  background: var(--cream);
  overflow: hidden;
}

.gallery__intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.gallery__intro .section__head {
  margin-bottom: 0;
}

.stack-slider__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}

.stack-slider__caption {
  font-family: Montserrat, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.stack-slider__nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stack-slider__count {
  min-width: 72px;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--green);
  font-weight: 600;
}

.stack-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font-size: 1.1rem;
  transition: 0.35s var(--ease);
}

.stack-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--cream);
}

.gallery__stage {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.stack-slider {
  position: relative;
  height: 520px;
}

.gallery__side {
  max-width: 380px;
}

.gallery__kicker {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.gallery__side h3 {
  color: var(--green);
  font-size: 1.35rem;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.gallery__side p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  text-transform: none;
  letter-spacing: 0;
  font-family: Outfit, sans-serif;
  font-weight: 400;
}

.gallery__side-list {
  list-style: none;
  margin-top: 22px;
  display: grid;
  gap: 8px;
  color: var(--green);
  font-size: 0.92rem;
}

.gallery__side-list li::before {
  content: "— ";
  color: var(--gold);
}

.gallery__progress {
  margin-top: 28px;
  height: 2px;
  background: rgba(117, 91, 65, 0.2);
  overflow: hidden;
}

.gallery__progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
  transform-origin: left;
}

.gallery__progress span.is-running {
  animation: stackProgress 4.5s linear forwards;
}

@keyframes stackProgress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.stack-slide {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(78%, 760px);
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 24px 50px rgba(27, 48, 34, 0.18);
  cursor: zoom-in;
  transform-origin: left center;
  transition: transform 0.7s var(--ease), opacity 0.7s var(--ease), filter 0.7s var(--ease);
  will-change: transform, opacity;
}

.stack-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.stack-slide[data-pos="0"] {
  transform: translateX(0) scale(1);
  opacity: 1;
  z-index: 5;
  filter: none;
  cursor: zoom-in;
}

.stack-slide[data-pos="1"] {
  transform: translateX(9%) scale(0.94);
  opacity: 0.78;
  z-index: 4;
  filter: brightness(0.85);
  cursor: pointer;
}

.stack-slide[data-pos="2"] {
  transform: translateX(18%) scale(0.88);
  opacity: 0.5;
  z-index: 3;
  filter: brightness(0.7);
  cursor: pointer;
}

.stack-slide[data-pos="3"] {
  transform: translateX(27%) scale(0.82);
  opacity: 0.28;
  z-index: 2;
  filter: brightness(0.55);
  pointer-events: none;
}

.stack-slide[data-pos="hidden"] {
  transform: translateX(-18%) scale(0.92);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.gallery__note {
  margin-top: 22px;
  font-size: 0.78rem;
  color: var(--muted);
}

.developer {
  background: var(--green);
  color: var(--cream);
  text-align: center;
}

.developer h2 {
  color: var(--cream);
}

.developer__inner {
  max-width: 760px;
}

.developer p:last-child {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.enquire {
  background: var(--ivory);
}

.enquire__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.enquire__points {
  list-style: none;
  margin-top: 28px;
  color: var(--green);
}

.enquire__points li + li {
  margin-top: 8px;
}

.enquire p {
  color: var(--muted);
  margin-top: 14px;
}

.form {
  background: var(--white);
  padding: 28px 24px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form--hero {
  color: var(--ink);
  max-width: 400px;
  margin-left: auto;
  width: 100%;
}

.form--hero h3,
.modal__panel h3 {
  color: var(--green);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form--hero > p,
.modal__panel > p {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0 0 16px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-family: Outfit, sans-serif;
}

.req {
  color: #b23b3b;
  margin-left: 2px;
}

.lead-submit.loading .btn-text {
  opacity: 0.75;
}

.lead-submit.success {
  background: var(--green);
  color: var(--cream);
}

.form__field,
.lead-form .form__field {
  margin-bottom: 14px;
}

.form__field label,
.lead-form label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.form__field input,
.lead-form input,
.form input {
  width: 100%;
  height: 46px;
  border: 1px solid rgba(27, 48, 34, 0.15);
  border-radius: 8px;
  padding: 0 14px;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  background: var(--ivory);
}

.form__field input:focus,
.lead-form input:focus,
.form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(117, 91, 65, 0.15);
  background: var(--white);
}

.form__note {
  text-align: center;
  font-size: 0.72rem !important;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.5;
}

.footer {
  background: var(--green-deep);
  color: rgba(235, 224, 208, 0.72);
  padding: 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.9fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(235, 224, 208, 0.12);
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 14px;
}

.footer-ht-logo {
  height: 48px;
  width: auto;
  max-width: 240px;
  display: block;
  background: transparent;
}

.footer-presented {
  font-size: 0.82rem;
  max-width: 320px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-rera {
  display: inline-block;
  padding: 12px 14px;
  border: 1px solid rgba(235, 224, 208, 0.2);
}

.footer-rera-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 4px;
}

.footer-rera-value {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cream);
}

.footer-brand-note {
  margin-top: 14px;
  font-size: 0.75rem;
  color: rgba(235, 224, 208, 0.55);
}

.footer-heading {
  font-family: Montserrat, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 14px;
}

.footer-text {
  font-size: 0.88rem;
  margin-bottom: 8px;
  line-height: 1.65;
}

.footer-text a,
.footer-links a {
  color: rgba(235, 224, 208, 0.72);
}

.footer-text a:hover,
.footer-links a:hover,
.footer-rera-value:hover {
  color: var(--cream);
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-links a {
  font-size: 0.88rem;
  text-transform: none;
  letter-spacing: 0;
}

.footer-bottom {
  text-align: center;
  padding: 22px 0 28px;
}

.footer-bottom p,
.footer-disclaimer {
  font-size: 0.72rem;
  color: rgba(235, 224, 208, 0.5);
  line-height: 1.65;
}

.footer-disclaimer {
  max-width: 820px;
  margin: 10px auto 0;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.35s var(--ease);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
}

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

.lightbox,
.modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}

.lightbox {
  background: rgba(27, 48, 34, 0.88);
}

.lightbox.is-open,
.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 31, 22, 0.72);
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 86vh;
  object-fit: contain;
  transform: scale(0.92);
  transition: transform 0.45s var(--ease);
}

.lightbox.is-open img {
  transform: scale(1);
}

.lightbox__close,
.modal__close {
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 2;
  width: 36px;
  height: 36px;
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox__close {
  top: 18px;
  right: 22px;
  color: var(--white);
  font-size: 2.4rem;
}

.modal__panel {
  width: min(380px, 100%);
  background: var(--white);
  padding: 32px 22px 20px;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  box-shadow: 0 18px 50px rgba(18, 31, 22, 0.35);
  transform: translateY(24px) scale(0.96);
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}

.modal.is-open .modal__panel {
  transform: none;
  opacity: 1;
}

.modal__close:hover {
  color: var(--gold);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header) 0 auto;
    background: var(--green-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 28px 32px;
    gap: 18px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.35s var(--ease);
  }

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

  .hero__content,
  .overview__grid,
  .residences__grid,
  .highlights__grid,
  .amenities__grid,
  .location__grid,
  .enquire__grid {
    grid-template-columns: 1fr;
  }

  .form--hero {
    margin-left: 0;
    max-width: none;
  }

  .gallery__stage {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .gallery__side {
    max-width: none;
  }

  .gallery__intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .stack-slider__meta {
    align-items: flex-start;
  }

  .stack-slider {
    height: 420px;
    max-width: none;
  }

  .stack-slide {
    width: 86%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .logo img {
    height: 44px;
  }

  .section {
    padding: 80px 0;
  }

  .hero__content {
    padding-bottom: 90px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .stack-slider {
    height: 320px;
  }

  .stack-slide {
    width: 90%;
    border-radius: 12px;
  }

  .amenities__banner {
    height: 340px;
  }

  .location__map {
    height: 280px;
  }
}

/* ——— Loader ——— */
.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--cream);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 22px;
  color: var(--gold);
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__logo {
  width: min(280px, 70vw);
  height: auto;
  animation: loaderPulse 1.4s ease-in-out infinite;
}

.loader__bar {
  width: 160px;
  height: 1px;
  background: rgba(117, 85, 61, 0.2);
  overflow: hidden;
}

.loader__bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--gold);
  animation: loaderBar 1.1s ease-in-out infinite;
}

/* ——— Scroll reveals ——— */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}

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

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

.reveal-hero {
  opacity: 0;
  transform: translateY(28px);
}

body.is-ready .reveal-hero {
  animation: riseIn 1.1s var(--ease) forwards;
  animation-delay: calc(var(--d, 0s) + 0.15s);
}

.section__head h2 {
  position: relative;
}

.section__index {
  display: inline-block;
}

/* ——— Keyframes ——— */
@keyframes kenburns {
  to {
    transform: scale(1);
  }
}

@keyframes shineSweep {
  0%,
  70% {
    transform: translateX(-40%);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateX(40%);
    opacity: 0;
  }
}

@keyframes shimmer {
  to {
    transform: translateX(120%);
  }
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

@keyframes loaderBar {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(320%);
  }
}

@keyframes floatPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 10px 30px rgba(117, 91, 65, 0.35);
  }
  50% {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(117, 91, 65, 0.5);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal-hero,
  .hero__media img {
    opacity: 1;
    transform: none;
  }
}
