* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Jost', sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* Header Section CSS Start From Here */
.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}

.brand-logo img {
  display: block;
  width: auto;
  max-width: min(220px, 42vw);
  height: 40px;
  object-fit: contain;
}

/* Header Section CSS End Here */

/* Hero Section CSS Start From Here */
.hero-section {
  position: relative;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg picture,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  /* slightly darker overlay to ensure white SVG logo readability */
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  color: #fff;
  max-width: 90%;
  width: 900px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-logo {
  margin-bottom: 8px;
  animation: fadeInHeroLogo 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-logo img {
  display: block;
  width: 320px;
  max-width: 85vw;
  height: auto;
  object-fit: contain;
}

@keyframes fadeInHeroLogo {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

.hero-content h1 {
  font-family: 'Jost', sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  line-height: 1.25;
  margin: 0;
  color: #fff;
  animation: fadeInHeroTitle 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes fadeInHeroTitle {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@media (max-width: 768px) {

  /* ── Unified mobile h2 font size ── */
  h2 {
    font-size: clamp(1.55rem, 6vw, 1.9rem) !important;
    line-height: 1.25 !important;
  }

   /* Restore absolute bg so it stretches to fill the full 100dvh container */
  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .hero-bg picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .hero-bg picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  /* Logo + text: 120px from top, perfectly centered */
  .hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 4;
    padding-top: 170px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 24px;
  }

  /* Smaller logo on mobile */
  .hero-logo img {
    width: 180px;
    max-width: 55vw;
    margin: 0 auto;
    display: block;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    letter-spacing: 0.05em;
  }
}

/* Hero Section CSS End Here */

/* Enquiry Button CSS Start From Here */
.header-cta {
  padding: 5px 20px;
  border-radius: 999px;
  background: #b88943;
  font-size: 0.82rem;
  border: none;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

/* Enquiry Button CSS End Here */

/* Hero Section CSS Start From Here */
.hero-section {
  position: relative;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

/* Hero Section CSS Start From Here */
@media (max-width: 768px) {

  /* Fill the full viewport — cover trims minimally on sides, fills top-to-bottom */
  .hero-section {
      min-height: 80dvh;
	      height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}

/* Footer Section CSS Start From Here */
.site-footer {
  background: #B88943;
  color: #4a4a4a;
  padding: 26px 0 0;
}

.footer-shell {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 18px;
  border-bottom: 1px solid #ffffff;
}

.footer-left,
.footer-right {
  display: flex;
}

.footer-logo {
  width: 170px;
  height: auto;
  object-fit: contain;
}

.footer-details p,
.footer-bottom p {
  margin: 0;
  margin-bottom: 5px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #fff;
}

.footer-right {
  align-items: end;
  text-align: center;
}

.footer-socials {
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: end;
  gap: 8px;
  margin-top: 12px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #7b5b2c;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1;
}

.footer-bottom {
  padding: 10px 24px 14px;
  text-align: center;
}

/* Footer Section CSS End Here */


/* Popup Section CSS Start From Here */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
}

.modal-backdrop[hidden] {
  display: none;
}

.callback-modal {
  position: relative;
  width: min(500px, 100%);
  padding: 40px;
  background: #fcfbf7;
  color: var(--ink-dark);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.modal-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  background: #111;
  transform-origin: center;
}

.modal-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-title {
  margin: 0 0 20px;
  font-size: clamp(2.1rem, 2vw, 2.1rem);
  font-weight: 500;
  text-align: center;
  color: #b88943;
}

.callback-form {
  display: grid;
  gap: 10px;
}

.field-group {
  display: grid;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
}

.field-group input {
  width: 100%;
  padding: 10px 0 0 5px;
  border: 0;
  border-bottom: 1px solid #b88943;
  background: transparent;
  color: var(--ink-dark);
  outline: none;
}

.field-group input.is-invalid {
  border-bottom-color: #d94b4b;
}

.field-group span {
  font-size: 0.9rem;
}

.field-error {
  min-height: 16px;
  color: #d94b4b;
  font-size: 0.78rem;
  line-height: 1.3;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(1.05rem, 2vw, 1.15rem);
}

.checkbox-row input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--accent-deep);
}

.checkbox-row span {
  font-size: 0.9rem;
}

.submit-button {
  justify-self: center;
  padding: 10px 20px;
  border: 0;
  background: #b88943;
  color: #fff;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 20px;
}

.callback-success-message {
  display: none;
  padding: 16px 18px;
  border: 1px solid rgba(155, 177, 31, 0.35);
  background: rgba(188, 213, 49, 0.12);
  color: var(--ink-dark);
  text-align: center;
}

.callback-success-message p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.callback-form.is-submitted .callback-success-message {
  display: block;
}

/* Popup Section CSS end From Here */


/* Heights Wished Section CSS Start From Here */
.heights-wished-section {
  position: relative;
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
    url("assets/bg_image.webp") center/cover no-repeat;
  overflow: hidden;
}

.heights-wished-shell {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0 96px;
  padding-left: max(24px, 4vw);
  /* extra left breathing room to match design */
}

.heights-wished-brand {
  grid-area: brand;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 80px;
}

.heights-wished-brand img {
  width: min(240px, 46vw);
  height: auto;
  object-fit: contain;
}

.heights-wished-grid {
  display: grid;
  grid-template-columns: 45fr 55fr;
  grid-template-areas:
    ". brand"
    "copy carousel";
  align-items: start;
  gap: 0 72px;
  /* wider gap between text and carousel columns to match design */
}

.heights-wished-copy {
  grid-area: copy;
}

.heights-wished-copy h2 {
  margin: 0 0 32px;
  color: #b98a3d;
  font-family: 'Jost', sans-serif;
  font-size: clamp(2.6rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
}

.heights-wished-text {
  display: grid;
  gap: 18px;
}

.heights-wished-text p {
  margin: 0;
  color: #8c8c8c;
  font-family: 'Jost', sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.6;
}

.heights-wished-carousel-block {
  grid-area: carousel;
  min-width: 0;
  width: 100%;
  margin-right: 0;
}

.heights-wished-carousel-window {
  overflow: hidden;
  position: relative;
  will-change: transform;
  transform: translateZ(0); /* force GPU clipping to prevent subpixel bleed at edges */
}

.heights-wished-carousel-track {
  display: flex;
  gap: 14px;
  transform: translateX(0);
  transition: transform 0.55s ease;
}

.heights-wished-slide {
  flex: 0 0 calc((100% - 14px) / 2);
}

.heights-wished-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.heights-wished-controls {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.heights-wished-arrow {
  width: 32px;
  height: 32px;
  border: 1px solid #686868;
  border-radius: 50%;
  background: transparent;
  color: #4d4d4d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.heights-wished-arrow span {
  font-size: 0.95rem;
  line-height: 1;
}

/* Heights Wished Section CSS End From Here */

/* Heights Story Section CSS Start From Here */

/* Mobile-only nav — hidden on desktop */
.story-mobile-controls {
  display: none;
}

.heights-story-section {
  position: relative;
}

.story-split-container {
  position: relative;
  width: 100%;
  background: #f5f5f5;
  height: 300vh; /* scroll space for 3 panels — JS uses this to drive both columns */
}

.story-shell {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 80px;
  padding-left: max(24px, 4vw);
  align-items: center;
  position: sticky;
  top: 0;
  height: 100vh; /* both columns stay pinned together */
}

.story-visual-column {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.story-visual-wrapper {
  position: relative;
  width: 100%;
  max-width: min(100%, 48vh);
  aspect-ratio: 0.78 / 1.38;
  background: transparent;
}

.story-image-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  will-change: clip-path, opacity, transform;
}

.story-image-layer.z-3 {
  z-index: 3;
  opacity: 1;
}

.story-image-layer.z-2 {
  z-index: 2;
  opacity: 0;
}

.story-image-layer.z-1 {
  z-index: 1;
  opacity: 0;
}

.story-image-shape {
  width: 100%;
  height: 100%;
}

.story-image-shape img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  will-change: transform;
}

.story-mobile-image {
  display: none;
}

.story-content-column {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.story-text-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 15vh 0 0;
  opacity: 0;
  will-change: opacity, transform; /* GPU-accelerated by JS lerp */
  pointer-events: none;
}

#story-text-1 {
  opacity: 1;
  pointer-events: auto;
}

.heights-story-content {
  max-width: 500px;
}

.heights-story-content h2 {
  margin: 0 0 36px;
  color: #b88944;
  font-family: 'Jost', sans-serif;
  font-size: clamp(2.8rem, 4vw, 4.1rem);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: 0.01em;
  max-width: 12em;
  /* allows explicit br tags to define line breaks while keeping heading width bounded */
}

.heights-story-content p {
  margin: 0;
  max-width: 20em;
  color: #8a8a8a;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  line-height: 1.9;
}

/* Heights Story Section CSS End From Here */


/* Full Hero Slider Section Start */
.full-hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.fhs-track-container {
  width: 100%;
  height: 100%;
}

.fhs-track {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  will-change: transform;
}

.fhs-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.fhs-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fhs-arrow-area {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20%;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 10;
}

.fhs-arrow-left {
  left: 0;
  justify-content: flex-start;
  padding-left: 40px;
}

.fhs-arrow-right {
  right: 0;
  justify-content: flex-end;
  padding-right: 40px;
}

.fhs-arrow-area button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: #333;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.35s ease, background 0.2s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fhs-arrow-area:hover button {
  opacity: 1;
}

.fhs-arrow-area button:hover {
  background: #fff;
}

/* Full Hero Slider Section End */

/* SECTION */

.amenities-section2 {
  position: relative;
  padding: 90px 6%;
  background: url('assets/bg_image.webp') center center/cover no-repeat;
  overflow: hidden;
}

.amenities-overlay2 {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
}

.amenities-container2 {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: auto;
}

/* HEADING */

.amenities-heading2 {
  text-align: center;
  margin-bottom: 70px;
}

.amenities-heading2 h2 {
  font-size: clamp(2.6rem, 3vw, 3rem);
  font-weight: 500;
  color: #b88943;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.amenities-heading2 p {
  max-width: 980px;
  margin: auto;
  color: #8d8d8d;
  font-size: 16px;
  line-height: 2;
}

/* GRID */
.amenities-grid2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
  position: relative;
  padding-top: 40px;
  margin-bottom: -280px;
  /* Pulls the next section up to hide empty space */
}

.amenity-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
  will-change: transform;
}

.amenity-column:nth-child(1) {
  margin-top: 40px;
}

.amenity-column:nth-child(2) {
  margin-top: 120px;
}

.amenity-column:nth-child(3) {
  margin-top: 80px;
}

/* CARD */
.amenity-card2 {
  width: 100%;
  aspect-ratio: 0.72;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  cursor: pointer;
}

.amenity-card2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.amenity-card2:hover img {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width:991px) {

  .amenities-grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    height: auto;
    overflow: visible;
    margin-bottom: 0;
    padding-top: 0;
  }

  .amenity-column {
    width: 100%;
    transform: none !important;
    margin-top: 0 !important;
    gap: 16px;
    display: contents; /* flatten columns so cards flow into the parent 2-col grid */
  }

  .amenity-card2 {
    aspect-ratio: 0.72;
  }

  /* h2 font-size handled by global 768px rule */

}

@media(max-width:576px) {

  .amenities-section2 {
    padding: 60px 16px;
  }

  .amenities-grid2 {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .amenity-card2 {
    aspect-ratio: 0.72;
  }

  /* h2 font-size handled by global 768px rule */

  .amenities-heading2 p {
    font-size: 15px;
    line-height: 1.8;
  }

}


.plans-section {
  padding: 90px 6%;
  background: #f4f4f4;
}

.plans-container {
  max-width: 1240px;
  margin: auto;
}

.plans-heading {
  text-align: center;
  margin-bottom: 50px;
}

.plans-heading h2 {
  font-size: clamp(2.6rem, 3vw, 3rem);
  color: #b88943;
  font-weight: 500;
  margin: 0;
}

.plans-heading p {
  color: #8c8c8c;
  font-size: 18px;
}

/* TABS */

.plans-tabs {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 50px;
  position: relative;
}

.plans-tabs::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 210px;
  height: 1px;
  background: #d2d2d2;
}

.plan-tab {
  border: none;
  background: none;
  font-size: 18px;
  color: #666;
  padding-bottom: 12px;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.plan-tab.active {
  color: #333;
  font-weight: 600;
}

.plan-tab::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #b88943;
  transition: width 0.3s ease, left 0.3s ease;
}

.plan-tab.active::after {
  width: 100%;
  left: 0;
}

/* CONTENT */

.plans-content {
  display: none;
  opacity: 0;
}

.plans-content.active {
  display: block;
  animation: fadeInTab 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes fadeInTab {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }

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

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.plan-box {
  background: #e8e8e8;
  padding: 30px;
  text-align: center;
}

.plan-box img {
  width: 100%;
  display: block;
}

.plan-box h4 {
  margin-top: 20px;
  color: #8b8b8b;
  font-size: 22px;
  font-weight: 600;
}

/* BUTTON */

.plans-btn-wrap {
  text-align: center;
  margin-top: 40px;
}

.download-btn {
  display: inline-block;
  background: #b88943;
  color: #fff;
  padding: 5px 15px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.download-btn:hover {
  background: #9c7438;
}

/* RESPONSIVE */

@media(max-width:991px) {

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

  /* h2 font-size handled by global 768px rule */

}

@media(max-width:576px) {

  .plans-section {
    padding: 60px 20px;
  }

  /* h2 font-size handled by global 768px rule */

  .plans-heading p {
    font-size: 15px;
  }

  .plan-tab {
    font-size: 15px;
  }

  .plan-box {
    padding: 20px;
  }

  .plan-box h4 {
    font-size: 18px;
  }

}

.map-section {
  padding: 0px 6% 80px;
  background: #f3f3f3;
}

.map-container {
  max-width: 1240px;
  margin: auto;
}

.map-iframe-container {
  position: relative;
  width: 100%;
  height: 480px;
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.map-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-marker-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  pointer-events: none;
  z-index: 10;
  width: 275px;
}

.map-marker-overlay img {
  width: 100% !important;
  height: auto !important;
  display: block;
}

.map-container img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* MOBILE */

@media(max-width:768px) {

  .map-section {
    padding: 0px 20px 60px;
  }

  .map-iframe-container {
    height: 350px;
    margin-bottom: 24px;
    border-radius: 8px;
  }

  .map-marker-overlay {
    width: 140px;
  }

  .map-marker-overlay img {
    width: 100% !important;
  }

  .map-container img {
    border-radius: 8px;
  }

  .full-hero-slider {
    height: auto;
    aspect-ratio: 1.5;
  }

  .fhs-arrow-area button {
    opacity: 0.85;
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .fhs-arrow-left {
    padding-left: 12px;
  }

  .fhs-arrow-right {
    padding-right: 12px;
  }

}

/* ib height page css end from here */


@media (max-width: 900px) {
  .site-header {
    padding-top: 20px;
  }

  .intro-showcase-shell {
    width: min(100% - 20px, 1360px);
  }

  .intro-image-section {
    margin-top: -68px;
  }

  .intro-showcase-shell {
    padding: 0;
  }

  .icon-top-left {
    left: 56px;
  }

  .icon-bottom-left {
    left: 56px;
    bottom: 282px;
  }

  .icon-bottom-right {
    right: 56px;
    bottom: 220px;
  }

  .icon-left-edge {
    top: 208px;
    left: 6px;
  }

  .amenities-shell {
    width: min(100% - 32px, 1220px);
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 82px 0 72px;
  }

  .amenities-content {
    max-width: 100%;
  }

  .amenities-flower-wrap {
    justify-self: start;
    width: min(220px, 34vw);
  }

  .location-shell {
    width: min(100% - 32px, 1220px);
    flex-direction: column;
    gap: 40px;
  }

  .location-content,
  .location-map-wrap {
    width: 100%;
  }

  .green-life-shell {
    width: min(100% - 32px, 1280px);
    min-height: auto;
    flex-direction: column;
    gap: 18px;
    padding: 56px 0 64px;
  }

  .green-life-carousel,
  .green-life-content {
    width: 100%;
    flex: none;
  }

  .master-plan-shell {
    width: min(100% - 32px, 1360px);
  }

  .master-plan-decor-right {
    right: -20px;
  }

  .master-plan-decor-mid {
    right: 88px;
  }

  .plotted-layout-shell {
    width: 100%;
  }

  .lifestyle-marquee-section {
    padding: 62px 0 66px;
  }

  .lifestyle-marquee-track {
    gap: 32px;
  }

  .brochure-section {
    padding: 46px 0 58px;
  }

  .footer-shell {
    width: min(100% - 32px, 1120px);
    gap: 24px;
  }

  .heights-wished-shell {
    width: min(100% - 32px, 1100px);
    padding: 52px 0 72px;
  }

  .heights-wished-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "copy"
      "carousel";
    gap: 32px;
  }

  /* Center the brand logo */
  .heights-wished-brand {
    justify-content: center;
    margin-bottom: 0;
  }

  /* Center all copy text */
  .heights-wished-copy {
    text-align: center;
  }

  .heights-wished-copy h2 {
    text-align: center;
  }

  .heights-wished-text p {
    text-align: center;
  }

  /* Carousel: full width, centered */
  .heights-wished-carousel-block {
    width: 100%;
    margin-right: 0;
  }

  /* 1 slide at a time with breathing space left & right */
  .heights-wished-carousel-track {
    gap: 0;
  }

  .heights-wished-carousel-window {
    overflow: hidden;
    display: block;
  }

  .heights-wished-slide {
    flex: 0 0 100%;
    padding: 0 14%;
  }

  .heights-wished-slide img {
    border-radius: 2px;
  }

  /* Center the nav arrows */
  .heights-wished-controls {
    justify-content: center;
  }

  .heights-story-panel-inner {
    width: min(100% - 48px, 1140px);
    gap: 42px;
  }
}


@media (max-width: 640px) {
  .site-header {
    width: min(100% - 24px, 1220px);
    gap: 14px;
  }

  .brand-logo img {
    height: 42px;
    max-width: 150px;
  }



  .header-cta {
    letter-spacing: 0.12em;
  }

  .header-cta {
    padding: 5px 20px;
  }

  .intro-showcase-section {
    padding-top: 40px;
  }

  .intro-brand-logo {
    width: min(188px, 58vw);
  }

  .intro-brand-block {
    margin-bottom: 28px;
  }

  .intro-brand-subtitle {
    margin-top: 6px;
    font-size: clamp(1.1rem, 5vw, 1.45rem);
  }

  .intro-card {
    width: calc(100% - 32px);
    padding: 30px 18px 30px;
  }

  .intro-card img {
    display: none;
  }

  .intro-card-copy {
    width: min(100%, 320px);
    font-size: 0.76rem;
    line-height: 1.9;
  }

  .intro-image-section {
    margin-top: -22px;
  }

  .amenities-section {
    min-height: auto;
  }

  .amenities-shell {
    width: min(100% - 24px, 1220px);
    min-height: auto;
    padding: 60px 0 52px;
    gap: 34px;
  }

  .amenities-heading {
    margin-bottom: 32px;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
    row-gap: 22px;
  }

  .amenities-flower-wrap {
    width: min(180px, 50vw);
  }

  .location-section {
    padding: 56px 0 64px;
  }

  .location-shell {
    width: min(100% - 24px, 1220px);
    gap: 28px;
  }

  .location-title {
    margin-bottom: 22px;
  }

  .location-row {
    gap: 12px;
    font-size: 0.88rem;
  }

  .location-row strong {
    font-size: 0.82rem;
  }

  .green-life-shell {
    width: min(100% - 24px, 1280px);
    padding: 34px 0 46px;
    gap: 8px;
  }

  .green-life-carousel {
    aspect-ratio: 0.95 / 1;
  }

  .green-life-content h2 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .master-plan-section {
    padding: 42px 0 28px;
  }

  .master-plan-shell {
    width: min(100% - 24px, 1360px);
  }

  .master-plan-heading {
    gap: 10px;
    margin-bottom: 18px;
  }

  .master-plan-heading-icon {
    width: 36px;
  }

  .master-plan-decor-right {
    top: 62px;
    right: -34px;
    width: 110px;
  }

  .master-plan-decor-mid {
    top: 170px;
    right: 10px;
    width: 56px;
  }

  .master-plan-decor-bottom-left {
    bottom: 40px;
    left: 12px;
  }

  .plotted-layout-section {
    padding: 0;
  }

  .plotted-layout-shell {
    width: 100%;
  }

  .plot-hotspot {
    width: 32px;
    height: 32px;
  }

  .plot-hotspot-ring {
    width: 20px;
    height: 20px;
  }

  .plot-hotspot-core {
    width: 12px;
    height: 12px;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.32);
  }

  .plotted-layout-image {
    height: 300px;
  }

  .plot-hotspot-label {
    font-size: 0.50rem;
  }

  .plot-hotspot-line {
    position: absolute;
    inset: 0;
    width: 1px;
    height: 20px;
    border: 1px solid rgb(255, 255, 255);
    top: -5px;
    left: 20px;
  }

  .plot-hotspot-line::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: -2.5px;
    background-color: #fff;
    width: 5px;
    height: 5px;
    border-radius: 50%;
  }

  .internal-Road-one {
    top: 40%;
    left: 33%;
  }

  .hotspot-park {
    top: 30%;
    left: 13%;
  }

  .internal-Road-two {
    top: 20%;
    left: 38%;
  }

  .internal-Road-three {
    top: 28%;
    left: 60%;
  }

  .internal-Road-four {
    top: 32%;
    left: 82%;
  }

  .hotspot-commercial-one {
    top: 60%;
    left: 57.5%;
  }

  .hotspot-commercial-two {
    top: 52%;
    left: 73%;
  }

  .hotspot-entrance {
    top: 68%;
    left: 48%;
  }

  .lifestyle-marquee-section {
    padding: 42px 0 46px;
  }

  .lifestyle-marquee-track {
    gap: 18px;
  }

  .lifestyle-marquee-card {
    width: 72vw;
  }

  .brochure-section {
    padding: 34px 0 42px;
  }

  .brochure-shell {
    width: min(100% - 24px, 720px);
  }

  .brochure-image {
    width: 100%;
  }

  .green-life-slide .butterfly {
    position: absolute;
    bottom: -150px;
    right: 0;
    z-index: 9999;
    width: 250px;
  }

  .green-life-slide .parrot {
    position: absolute;
    top: -150px;
    right: 0;
    z-index: 9999;
    width: 250px;
  }

  .footer-shell {
    width: min(100% - 24px, 1120px);
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
  }

  .footer-left,
  .footer-right {
    align-items: end;
    text-align: center;
  }

  .footer-logo {
    width: 150px;
  }

  .footer-phone-list a {
    font-size: 0.98rem;
  }

  .footer-address {
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .heights-wished-shell {
    width: min(100% - 24px, 1100px);
    padding: 34px 0 48px;
  }

  .heights-wished-brand {
    margin-bottom: 0;
  }

  .heights-wished-brand img {
    width: min(190px, 56vw);
  }

  .heights-wished-copy h2 {
    margin-bottom: 22px;
    text-align: center;
  }

  .heights-wished-text {
    gap: 14px;
	padding:0px 30px;
  }

  .heights-wished-text p {
    font-size: 0.98rem;
    text-align: center;
  }

  /* 1 slide at a time on small mobile */
  .heights-wished-carousel-track {
    gap: 0;
  }

  .heights-wished-slide {
    flex: 0 0 100%;
    padding: 0 14%;
  }

  .heights-wished-controls {
    margin-top: 16px;
    justify-content: center;
  }

  .heights-story-section {
    height: auto;
  }

  .story-split-container {
    height: auto !important;
    padding: 0;
    background: #fff;
  }

  /* Shell = overflow-hidden carousel window */
  .story-shell {
    position: static !important;
    height: auto !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .story-visual-column {
    display: none !important;
  }

  /* story-content-column = flex-row track, JS sets its transform */
  .story-content-column {
    position: static !important;
    height: auto !important;
    overflow: visible !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1) !important;
    will-change: transform;
    transform: translateX(0);
  }

  /* Each panel = one slide; JS sets width in pixels */
  .story-text-panel {
    position: static !important;
    opacity: 1 !important;
    height: auto !important;
    padding: 0 !important;
    pointer-events: auto !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    /* width set dynamically by JS to match window width */
    box-sizing: border-box !important;
  }

  /* Inner content — centered, breathing space */
  .heights-story-content {
    width: 100%;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 32px 24px 40px !important;
    box-sizing: border-box;
  }

  /* Heading first (above image via order) */
  .heights-story-content h2 {
    order: -1;
    text-align: center !important;
    margin: 0 0 20px !important;
    width: 100%;
  }

  /* Description — 60px breathing space each side */
  .heights-story-content p {
    order: 1;
    text-align: center !important;
    font-size: 0.93rem !important;
    line-height: 1.9 !important;
    width: 100%;
    padding: 0 30px !important;
    box-sizing: border-box;
    max-width: 100% !important;
  }

  /* Image — centered, between heading and description */
  .story-mobile-image {
    order: 0;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 0 24px !important;
  }

  .story-mobile-image img {
    display: block !important;
    width: min(65%, 210px) !important;
    height: auto !important;
    object-fit: contain !important;
    margin: 0 auto !important;
  }


  /* Mobile carousel nav — hidden on desktop, shown on mobile */
  .story-mobile-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0 0 40px;
    background: #fff;
  }

  .story-mobile-arrow {
    width: 32px;
    height: 32px;
    border: 1px solid #686868;
    border-radius: 50%;
    background: transparent;
    color: #4d4d4d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1;
  }

  .heights-story-frame {
    position: relative;
    height: auto;
    overflow: visible;
  }

  .heights-story-container {
    height: auto;
    transform: none !important;
    transition: none;
  }

  .heights-story-panel {
    height: auto;
    min-height: 100vh;
    padding: 42px 0;
  }

  .heights-story-panel-inner {
    width: min(100% - 24px, 1140px);
    flex-direction: column;
    gap: 26px;
  }

  .heights-story-visual {
    width: 100%;
  }

  .heights-story-shape {
    position: relative;
    top: auto;
    height: auto;
    width: min(100%, 280px);
  }

  .heights-story-content {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .heights-story-content h2 {
    margin-bottom: 16px;
    /* font-size handled by global 768px h2 rule */
  }

  .heights-story-content p {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.75;
  }

  .floating-icon {
    opacity: 0.88;
  }

  .icon-top-left {
    top: 58px;
    left: 40px;
  }

  .icon-left-mid {
    top: 194px;
    left: 10px;
  }

  .icon-bottom-left {
    left: 28px;
    bottom: 154px;
  }

  .icon-bottom-right {
    right: 28px;
    bottom: 124px;
  }

  .icon-corner-left {
    top: 2px;
    left: -26px;
  }

  .icon-left-edge {
    top: 188px;
    left: -2px;
  }

  .icon-corner-right {
    top: 118px;
    right: -16px;
  }

  .icon-corner-top-right {
    top: -4px;
    right: 38px;
  }

  .callback-modal {
    padding: 54px 24px 36px;
  }

  .modal-close {
    top: 18px;
    right: 18px;
  }

  .checkbox-row {
    align-items: flex-start;
  }
}