* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  background-color: #0d0d0d;
  color: #f2efe9;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 16px 48px;
  display: flex;
  justify-content: center;
  background-color: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar--scrolled {
  background-color: rgba(13, 13, 13, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

/* About page: scrolled state gets a light/white overlay instead of the
   default dark one, so the link + toggle colors flip to dark too. */
.navbar--white-scrolled.navbar--scrolled {
  background-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.navbar--white-scrolled.navbar--scrolled .navbar__link {
  color: #1a1a1a;
}

.navbar--white-scrolled.navbar--scrolled .navbar__toggle-bar {
  background-color: #1a1a1a;
}

.navbar__logo-link {
  position: absolute;
  left: 48px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar__logo {
  height: 46px;
  width: auto;
  border-radius: 6px;
  display: block;
}

.navbar__logo-divider {
  width: 1px;
  height: 30px;
  background-color: rgba(242, 239, 233, 0.35);
  opacity: 0;
  transform: scaleY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.navbar__logo--secondary {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width 0.35s ease, opacity 0.3s ease;
}

.navbar--scrolled .navbar__logo-divider {
  opacity: 1;
  transform: scaleY(1);
}

.navbar--scrolled .navbar__logo--secondary {
  max-width: 60px;
  opacity: 1;
}

.navbar__links {
  display: flex;
  gap: 40px;
}

.navbar__link {
  color: #f2efe9;
  text-decoration: none;
  font-size: 14.5px;
  letter-spacing: 0.5px;
  font-weight: 400;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.navbar__link:hover {
  opacity: 1;
}

/* On pages whose top section is light-colored (no dark Hero behind the navbar),
   use dark text until the blurred/scrolled state kicks in. */
.navbar--on-light:not(.navbar--scrolled) .navbar__link {
  color: #1a1a1a;
}

/* Hero */
.hero {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  background-image:
    linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.15) 45%, rgba(0, 0, 0, 0.35) 100%),
    url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 0 0 80px 48px;
}

.hero__line {
  display: flex;
  gap: 24px;
  overflow: hidden;
}

.hero__word {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(40px, 6.5vw, 96px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(100%);
  animation: popUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__line--1 .hero__word:nth-child(1) {
  animation-delay: 0.2s;
}

.hero__line--1 .hero__word:nth-child(2) {
  animation-delay: 0.35s;
}

.hero__line--2 .hero__word {
  animation-delay: 0.7s;
}

@keyframes popUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About */
.about {
  background-color: #f5f1ea;
  color: #1a1a1a;
  padding: 100px 64px;
}

/* Row: text content beside the collage */
.about__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 64px;
  align-items: start;
  margin-bottom: 56px;
}

.about__heading {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #8a7a5c;
  margin-bottom: 24px;
}

/* Collage of three images, beside the text — layered/overlapping cards */
.about__collage {
  position: relative;
  width: 100%;
  aspect-ratio: 842 / 830;
}

.about__collage-item {
  position: absolute;
  background: linear-gradient(135deg, #d8cdb8 0%, #c3b393 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.about__collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__collage-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 50%);
  pointer-events: none;
}

.about__collage-caption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.about__collage-item--1 {
  left: 0;
  top: 6%;
  width: 64%;
  height: 76%;
  z-index: 1;
}

.about__collage-item--2 {
  left: 61%;
  top: 0;
  width: 39%;
  height: 27%;
  z-index: 3;
}

.about__collage-item--3 {
  left: 39%;
  top: 50%;
  width: 50%;
  height: 46%;
  z-index: 2;
}

/* Title + description */
.about__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.about__title-accent {
  display: block;
  color: #b6935c;
  font-style: italic;
}

.about__description {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: #4a4438;
}

.about__description + .about__description {
  margin-top: 10px;
}

/* Feature list — plain bullets, no boxes */
.about__features {
  list-style: none;
  margin-top: 20px;
}

.about__feature {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-top: 1px solid #e2d9c8;
}

.about__feature:last-child {
  border-bottom: 1px solid #e2d9c8;
}

.about__feature-title {
  position: relative;
  padding-left: 22px;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #1a1a1a;
}

.about__feature-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #b6935c;
}

.about__feature-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding-left: 22px;
  color: #6b6353;
}

.about__more {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #b6935c;
  text-decoration: none;
  border-bottom: 1px solid #b6935c;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.about__more:hover {
  color: #8a7a5c;
  border-color: #8a7a5c;
}

/* Four tiles — dark feature strip, single horizontal row */
.about__tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background-color: #0d0d0d;
  background-image: radial-gradient(circle at 12% 0%, rgba(182, 147, 92, 0.16), transparent 55%);
  border-radius: 16px;
  padding: 48px 32px;
}

.about__tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 32px 20px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.about__tile-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background-color: rgba(182, 147, 92, 0.14);
  color: #c9a464;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__tile-icon svg {
  width: 26px;
  height: 26px;
}

.about__tile-title {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #f5f1ea;
}

.about__tile-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(245, 241, 234, 0.55);
  max-width: 230px;
}

/* Shared placeholder label styling */
.about__placeholder-label {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  color: rgba(26, 26, 26, 0.45);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Gallery */
.gallery {
  background-color: #0d0d0d;
  padding: 100px 64px;
}

.gallery__header {
  margin-bottom: 48px;
}

.gallery__heading {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c9a464;
  margin-bottom: 16px;
}

.gallery__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 600;
  color: #f5f1ea;
}

/* Collage matching the reference sketch: a 4x4 base grid where some cells
   merge into bigger blocks. Column/row ratios and merges are taken directly
   from the sketch's proportions (verified to sum to the full rectangle with
   zero gaps or overlap). */
.gallery__grid {
  display: grid;
  grid-template-columns: 353fr 186fr 240fr 121fr;
  grid-template-rows: 200px 80px 105px 115px;
  grid-template-areas:
    'a b c d'
    'e b c d'
    'e f f g'
    'h i i g';
  gap: 14px;
}

.gallery__tile {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  animation: galleryFloat 6s ease-in-out infinite;
}

@keyframes galleryFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Stagger so the tiles don't all bob in sync */
.gallery__grid .gallery__tile:nth-child(1) { animation-duration: 6.5s; animation-delay: 0s; }
.gallery__grid .gallery__tile:nth-child(2) { animation-duration: 5.5s; animation-delay: 0.4s; }
.gallery__grid .gallery__tile:nth-child(3) { animation-duration: 7s;   animation-delay: 0.8s; }
.gallery__grid .gallery__tile:nth-child(4) { animation-duration: 6s;   animation-delay: 1.2s; }
.gallery__grid .gallery__tile:nth-child(5) { animation-duration: 6.8s; animation-delay: 0.2s; }
.gallery__grid .gallery__tile:nth-child(6) { animation-duration: 5.8s; animation-delay: 1s; }
.gallery__grid .gallery__tile:nth-child(7) { animation-duration: 7.2s; animation-delay: 0.6s; }
.gallery__grid .gallery__tile:nth-child(8) { animation-duration: 6.3s; animation-delay: 1.4s; }
.gallery__grid .gallery__tile:nth-child(9) { animation-duration: 5.2s; animation-delay: 0.3s; }

.gallery__tile--1 { grid-area: a; }
.gallery__tile--2 { grid-area: b; }
.gallery__tile--3 { grid-area: c; }
.gallery__tile--4 { grid-area: d; }
.gallery__tile--5 { grid-area: e; }
.gallery__tile--6 { grid-area: f; }
.gallery__tile--7 { grid-area: g; }
.gallery__tile--8 { grid-area: h; }
.gallery__tile--9 { grid-area: i; }

.gallery__tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.75s ease, transform 0.5s ease;
}

.gallery__tile:hover img {
  transform: scale(1.06);
}

.gallery__tile img.is-fading {
  opacity: 0;
}

/* Amenities & Connectivity */
.amenities {
  background-color: #f5f1ea;
  color: #1a1a1a;
  padding: 100px 64px;
}

.amenities__header {
  margin-bottom: 48px;
}

.amenities__heading {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #8a7a5c;
  margin-bottom: 16px;
}

.amenities__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 600;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.amenities__title-accent {
  color: #b6935c;
}

.amenities__subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #6b6353;
}

.amenities__layout {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

/* Vertically auto-scrolling strips, capped at half the section width */
.amenities__strips {
  display: flex;
  gap: 14px;
  width: 50%;
  height: 420px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.amenities__strip {
  flex: 1;
  overflow: hidden;
}

.amenities__strip-track {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  animation: scrollUp 16s linear infinite;
}

.amenities__strip--reverse .amenities__strip-track {
  animation-direction: reverse;
}

@keyframes scrollUp {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

.amenities__tile {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background-color: #ffffff;
  border: 1px solid #e2d9c8;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.amenities__tile-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: rgba(117, 42, 93, 0.14);
  color: #752a5d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amenities__tile-icon svg {
  width: 16px;
  height: 16px;
}

.amenities__tile-label {
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: #1a1a1a;
}

/* Right column: connectivity overview graphic */
.amenities__right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.amenities__connectivity-graphic {
  width: auto;
  height: 420px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Floor Plan */
.floorplan {
  background-color: #0d0d0d;
  padding: 100px 64px;
}

.floorplan__header {
  margin-bottom: 48px;
  text-align: center;
}

.floorplan__heading {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c9a464;
  margin-bottom: 16px;
}

.floorplan__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 600;
  color: #f5f1ea;
}

.floorplan__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.floorplan__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.floorplan__type {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: #c9a464;
}

.floorplan__card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background-color: #161616;
  border: 1px solid rgba(245, 241, 234, 0.08);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.floorplan__image-frame {
  position: relative;
  width: 100%;
  padding: 8px;
  background-color: #ffffff;
  border: 1px solid #d8cdb8;
  border-radius: 4px;
}

.floorplan__image-placeholder {
  position: relative;
  aspect-ratio: 342 / 475;
  background-color: #f2efe9;
  border: 1px dashed #d8cdb8;
  border-radius: 2px;
}

.floorplan__image-placeholder .about__placeholder-label {
  width: 80%;
  color: rgba(26, 26, 26, 0.35);
}

/* Auto-advancing image stack (used once real floor plan images are added) */
.floorplan__image-stack {
  position: relative;
  aspect-ratio: 342 / 475;
  overflow: hidden;
  border-radius: 2px;
}

.floorplan__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.floorplan__slide.is-active {
  opacity: 1;
}

.floorplan__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.floorplan__area-note {
  position: absolute;
  bottom: 12px;
  right: 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  color: rgba(26, 26, 26, 0.45);
}

.floorplan__caption {
  display: none;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c4368f;
}

.floorplan__caption.is-active {
  display: block;
}

.floorplan__dots {
  display: flex;
  gap: 6px;
}

.floorplan__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(245, 241, 234, 0.25);
}

.floorplan__dot--active {
  width: 8px;
  height: 8px;
  background-color: #c9a464;
}

.floorplan__total {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(245, 241, 234, 0.7);
  text-align: center;
}

.floorplan__total strong {
  color: #c9a464;
  font-weight: 600;
}

/* Contact / Prime Location */
.contact {
  background-color: #ffffff;
  color: #1a1a1a;
  padding: 100px 64px;
}

.contact__layout {
  display: flex;
  align-items: stretch;
  gap: 56px;
}

.contact__content {
  flex: 1.1;
  min-width: 0;
}

.contact__heading {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #b6935c;
  margin-bottom: 16px;
}

.contact__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.contact__title-accent {
  display: block;
  color: #cba967;
}

.contact__description {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: #4a4438;
  max-width: 560px;
  margin-bottom: 32px;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact__tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 16px;
  background-color: #f4f2ee;
  border-radius: 8px;
}

.contact__tile-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #752a5d;
  color: #f5f1ea;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.contact__tile-icon svg {
  width: 18px;
  height: 18px;
}

.contact__tile-time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 700;
  color: #1a1a1a;
}

.contact__tile-label {
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.4;
  color: #6b6353;
}

.contact__map {
  flex: 1;
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: block;
}

/* Contact form section */
.contact-form {
  background-color: #ffffff;
  color: #1a1a1a;
  padding: 100px 64px;
}

.contact-form--standalone {
  padding-top: 176px;
}

.contact-form__layout {
  display: flex;
  align-items: stretch;
  gap: 56px;
}

.contact-form__info {
  flex: 1;
  min-width: 0;
}

.contact-form__heading {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #b6935c;
  margin-bottom: 16px;
}

.contact-form__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.contact-form__title-accent {
  display: block;
  color: #cba967;
}

.contact-form__description {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: #4a4438;
  max-width: 480px;
  margin-bottom: 32px;
}

.contact-form__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form__detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background-color: #f4f2ee;
  border-radius: 10px;
}

.contact-form__detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: #752a5d;
  color: #f5f1ea;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form__detail-icon svg {
  width: 20px;
  height: 20px;
}

.contact-form__detail-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-form__detail-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8a7a5c;
}

.contact-form__detail-value {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
}

.contact-form__panel {
  flex: 1;
  min-width: 0;
  background-color: #f4f2ee;
  border-radius: 16px;
  padding: 40px;
}

.contact-form__panel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.contact-form__panel-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #6b6353;
  margin-bottom: 28px;
}

.contact-form__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form__row {
  display: flex;
  gap: 16px;
}

.contact-form__input {
  width: 100%;
  padding: 16px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1a1a1a;
  background-color: #ffffff;
  border: 1px solid #e2d9c8;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease;
}

.contact-form__input::placeholder {
  color: #9a9284;
}

.contact-form__input:focus {
  border-color: #cba967;
}

.contact-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b6353' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  color: #1a1a1a;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 110px;
  font-family: 'Poppins', sans-serif;
}

.contact-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px;
  margin-top: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #f5f1ea;
  background-color: #752a5d;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.contact-form__submit svg {
  width: 16px;
  height: 16px;
}

.contact-form__submit:hover {
  background-color: #5e2249;
}

/* Footer */
.footer {
  background-color: #0d0d0d;
  color: #f5f1ea;
  padding: 80px 64px 24px;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 56px;
  margin-bottom: 48px;
}

.footer__brand {
  flex: 1.4;
  min-width: 260px;
}

.footer__logo {
  margin-bottom: 16px;
}

.footer__logo-image {
  height: 64px;
  width: auto;
  display: block;
}

.footer__tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(245, 241, 234, 0.6);
  max-width: 320px;
  margin-bottom: 20px;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: #161616;
  border: 1px solid rgba(245, 241, 234, 0.1);
  color: #f5f1ea;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.footer__social svg {
  width: 16px;
  height: 16px;
}

.footer__social:hover {
  background-color: #cba967;
  color: #1a1a1a;
}

.footer__column-title {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #cba967;
  margin-bottom: 20px;
}

.footer__column-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__column-list a {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(245, 241, 234, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__column-list a:hover {
  color: #cba967;
}

.footer__divider {
  border-top: 1px solid rgba(245, 241, 234, 0.1);
  margin-bottom: 24px;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.footer__copyright {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(245, 241, 234, 0.5);
}


/* Floating contact widget: expands into WhatsApp / Call / Book a Visit on click,
   collapses again when the cursor moves away. Pinned bottom-left, hidden over
   the Hero and fading in from About onward, staying through the Footer. */
.fab {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.fab.is-visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.fab__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.fab.is-open .fab__actions {
  max-height: 300px;
  margin-bottom: 14px;
}

.fab__action {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(12px) scale(0.92);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.fab.is-open .fab__action {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.fab.is-open .fab__actions .fab__action:nth-child(3) { transition-delay: 0s; }
.fab.is-open .fab__actions .fab__action:nth-child(2) { transition-delay: 0.06s; }
.fab.is-open .fab__actions .fab__action:nth-child(1) { transition-delay: 0.12s; }

.fab__action svg {
  box-sizing: border-box;
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
  flex-shrink: 0;
}

.fab__action--whatsapp {
  background-color: #2fce6b;
  color: #ffffff;
}

.fab__action--call {
  background-color: #cba967;
  color: #1a1a1a;
}

.fab__action--visit {
  background-color: #0d0d0d;
  color: #ffffff;
}

.fab__toggle {
  position: relative;
  box-sizing: border-box;
  width: 56px;
  height: 56px;
  max-width: 56px;
  max-height: 56px;
  border-radius: 50%;
  background-color: #752a5d;
  border: none;
  color: #f5f1ea;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 3px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: background-color 0.2s ease;
}

.fab__toggle:hover {
  background-color: #5e2249;
}

.fab.is-open .fab__toggle {
  background-color: #0d0d0d;
  color: #f5f1ea;
}

.fab__toggle-arrow {
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  max-width: 14px;
  max-height: 14px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.fab__toggle-phone {
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
  flex-shrink: 0;
}

.fab.is-open .fab__toggle-arrow {
  transform: rotate(180deg);
}

/* About subpage (about.html) */
.aboutpage {
  background-color: #0d0d0d;
  color: #f5f1ea;
  padding-top: 96px;
}

.aboutpage__section {
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 72px 64px;
}

.aboutpage__section--reverse {
  flex-direction: row-reverse;
}

.aboutpage__media {
  flex: 1;
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.aboutpage__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aboutpage__logo-card {
  flex: 1;
  max-width: 420px;
}

.aboutpage__text {
  flex: 1.2;
  min-width: 0;
}

.aboutpage__text h1,
.aboutpage__text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 600;
  margin-bottom: 20px;
  color: #f5f1ea;
}

.aboutpage__text p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245, 241, 234, 0.75);
}

.aboutpage__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.aboutpage__list li {
  position: relative;
  padding-left: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(245, 241, 234, 0.8);
}

.aboutpage__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cba967;
}

.aboutpage__banner {
  position: relative;
  padding: 120px 64px;
  text-align: center;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.aboutpage__banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.6);
}

.aboutpage__banner-text {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
}

/* Lightbox: click-to-expand for Gallery and Floor Plan images */
.gallery__tile,
.floorplan__image-frame {
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  background-color: rgba(13, 13, 13, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(245, 241, 234, 0.1);
  border: 1px solid rgba(245, 241, 234, 0.25);
  color: #f5f1ea;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.lightbox__close:hover {
  background-color: rgba(245, 241, 234, 0.2);
}

.lightbox__close svg {
  width: 20px;
  height: 20px;
}

/* ===================================================================
   Mobile responsive
   =================================================================== */

/* Hamburger button — hidden on desktop, shown via the 900px media query */
.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 20;
}

.navbar__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: #f2efe9;
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.2s ease;
}

.navbar--on-light:not(.navbar--scrolled) .navbar__toggle-bar {
  background-color: #1a1a1a;
}

.navbar__toggle.is-open .navbar__toggle-bar {
  background-color: #f5f1ea;
}

.navbar__toggle.is-open .navbar__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__toggle.is-open .navbar__toggle-bar:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.is-open .navbar__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav collapses into a hamburger + full-screen dropdown below 900px */
@media (max-width: 900px) {
  .navbar {
    justify-content: space-between;
    padding: 16px 20px;
  }

  .navbar__logo-link {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .navbar__logo {
    height: 34px;
  }

  .navbar__toggle {
    display: flex;
  }

  #navLinks {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    background-color: rgba(13, 13, 13, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  #navLinks.is-open {
    transform: translateX(0);
  }

  #navLinks .navbar__link {
    color: #f5f1ea;
    font-size: 20px;
    opacity: 1;
  }
}

/* Section-by-section reflow for phones/small tablets */
@media (max-width: 768px) {
  /* Hero — same bottom-left position, just bigger text relative to a
     narrow screen (desktop's clamp() is untouched above 768px). */
  .hero__text {
    padding: 0 0 56px 24px;
  }

  .hero__word {
    font-size: clamp(52px, 13vw, 72px);
  }

  /* Stack "La" and "Villa" onto their own lines too, so mobile reads as
     three layers — La / Villa / Township — instead of two. The pop-up
     animation delays are keyed off DOM order, not layout direction, so
     the same stagger (La, then Villa, then Township) still applies. */
  .hero__line--1 {
    flex-direction: column;
    gap: 0;
  }

  /* About (homepage teaser) */
  .about {
    padding: 64px 24px;
  }

  .about__row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__collage {
    max-width: 460px;
    margin: 0 auto;
  }

  .about__tiles {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 32px 20px;
  }

  /* Gallery — abandon the desktop tetris layout for a plain 3x3 square grid */
  .gallery {
    padding: 64px 24px;
  }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: none;
    grid-template-areas: none;
    gap: 8px;
  }

  .gallery__tile--1,
  .gallery__tile--2,
  .gallery__tile--3,
  .gallery__tile--4,
  .gallery__tile--5,
  .gallery__tile--6,
  .gallery__tile--7,
  .gallery__tile--8,
  .gallery__tile--9 {
    grid-area: auto;
    aspect-ratio: 1 / 1;
  }

  /* Amenities */
  .amenities {
    padding: 64px 24px;
  }

  .amenities__layout {
    flex-direction: column;
  }

  /* Keep the 3-column scrolling look from desktop, but make each tile
     icon-on-top/label-below (instead of side-by-side) so labels like
     "Multi Purpose Hall" wrap cleanly instead of clipping at ~110px wide. */
  .amenities__strips {
    width: 100%;
    height: 300px;
    gap: 8px;
  }

  .amenities__tile {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    padding: 10px 6px;
  }

  .amenities__tile-icon {
    width: 26px;
    height: 26px;
  }

  .amenities__tile-icon svg {
    width: 13px;
    height: 13px;
  }

  .amenities__tile-label {
    font-size: 10.5px;
    line-height: 1.25;
  }

  .amenities__right {
    width: 100%;
  }

  .amenities__connectivity-graphic {
    height: auto;
    width: 100%;
  }

  /* Floor Plan — stays 2-up (not a full 1-column stack) to keep the
     4 types to 2 rows instead of 4 */
  .floorplan {
    padding: 64px 24px;
  }

  .floorplan__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .floorplan__item {
    gap: 10px;
  }

  .floorplan__type {
    font-size: 18px;
  }

  .floorplan__caption {
    font-size: 9px;
  }

  .floorplan__total {
    font-size: 12px;
  }

  /* Prime Location / map */
  .contact {
    padding: 64px 24px;
  }

  .contact__layout {
    flex-direction: column;
    gap: 32px;
  }

  .contact__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__map iframe {
    min-height: 320px;
  }

  /* Get In Touch / Schedule a Visit */
  .contact-form {
    padding: 64px 24px;
  }

  .contact-form--standalone {
    padding-top: 120px;
  }

  .contact-form__layout {
    flex-direction: column;
    gap: 32px;
  }

  .contact-form__row {
    flex-direction: column;
  }

  .contact-form__panel {
    padding: 28px 20px;
  }

  /* Footer — extra bottom clearance so the fixed floating contact button
     doesn't sit on top of the last column's text at the end of the page */
  .footer {
    padding: 56px 24px 110px;
  }

  .footer__top {
    flex-direction: column;
    gap: 36px;
  }

  .footer__brand {
    min-width: 0;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* About subpage */
  .aboutpage {
    padding-top: 72px;
  }

  .aboutpage__section,
  .aboutpage__section--reverse {
    flex-direction: column;
    padding: 40px 24px;
    gap: 28px;
  }

  .aboutpage__logo-card {
    max-width: 260px;
  }

  .aboutpage__banner {
    padding: 64px 24px;
  }
}

/* Small-phone fine-tuning */
@media (max-width: 480px) {
  .fab__toggle {
    width: 50px;
    height: 50px;
  }

  .lightbox {
    padding: 20px;
  }

  .lightbox__close {
    top: 12px;
    right: 12px;
  }
}

/* Custom cursor — see main.js for why mix-blend-mode: difference gives
   black-on-light / white-on-dark automatically. Native cursor is hidden
   everywhere except text fields, which keep the I-beam for usability. */
html.lvt-custom-cursor,
html.lvt-custom-cursor * {
  cursor: none;
}

html.lvt-custom-cursor input,
html.lvt-custom-cursor textarea {
  cursor: text;
}

.lvt-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: transparent;
  border: 1.5px solid #ffffff;
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 100000;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.15s ease;
  will-change: transform;
}
