/* ============================================================
   EXACT FONT MAPPING DECLARATIONS (ALL 7 CUSTOM FONTS)
   ============================================================ */
@font-face {
  font-family: 'Aptos Light';
  src: url('fonts/Aptos-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Aptos SemiBold';
  src: url('fonts/Aptos-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Aptos Regular';
  src: url('fonts/Aptos.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Arial Custom';
  src: url('fonts/arial.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Calisto MT';
  src: url('fonts/CALIST.TTF') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond Bold';
  src: url('fonts/CormorantGaramond-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Myriad Pro';
  src: url('fonts/MyriadPro-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================================
   SECTION 1: HERO (100% FULL-WIDTH WEB SECTION)
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #2a3d52;
  scroll-margin-top: 70px;
}

/* Full-bleed background image covering entire width & height */
.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
  z-index: 0;
}

/* LEFT SKY BRANDING GROUP */
.hero-left-branding {
  position: absolute;
  top: clamp(60px, 18vh, 160px);
  left: clamp(20px, 24vw, 440px);
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: clamp(12px, 1.8vh, 20px);
}

.hero-title-img {
  width: clamp(220px, 18vw, 320px);
  height: auto;
  display: block;
}

/* HERO BOTTOM CTA CONTAINER & BUTTON */
.hero-bottom-cta {
  position: absolute;
  bottom: clamp(150px, 23vh, 230px);
  left: clamp(20px, 24vw, 440px);
  transform: translateX(calc(-50% - 5px));
  z-index: 3;
  display: flex;
  justify-content: center;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 36px;
  background-color: #354538;
  color: #ffffff;
  font-family: 'Aptos SemiBold', 'Aptos', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid #354538;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(53, 69, 56, 0.3);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-cta-btn i {
  font-size: 14px;
  transition: transform 0.28s ease;
}

.hero-cta-btn:hover {
  background-color: #C49C58;
  border-color: #C49C58;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(196, 156, 88, 0.4);
}

.hero-cta-btn:hover i {
  transform: translateX(4px);
}




/* ============================================================
   SECTION 2: A HOME THAT CONNECTS NATURE AND LIFE
   ============================================================ */
.section-nature {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #f7f9f7;
  display: flex;
  align-items: center;
  scroll-margin-top: 70px;
}

/* Background image section2.webp */
.nature-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
}

/* Soft White Overlay on Left Side */
.nature-white-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 50%, rgba(255, 255, 255, 0.60) 80%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

/* Content Container (Left-aligned) */
.nature-content {
  position: relative;
  z-index: 2;
  padding: clamp(35px, 6vh, 75px) clamp(20px, 5vw, 90px);
  max-width: clamp(480px, 52vw, 780px);
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vh, 30px);
}

/* Headline Group (Cormorant Garamond Bold) */
.nature-headline-group {
  display: flex;
  flex-direction: column;
}

.nature-heading-main {
  font-family: 'Cormorant Garamond Bold', 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.8vw, 62px);
  font-weight: 700;
  color: #22252a;
  line-height: 1.1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nature-heading-sub {
  font-family: 'Cormorant Garamond Bold', 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.8vw, 62px);
  font-weight: 700;
  color: #c49c58;
  line-height: 1.1;
  margin-top: 2px;
  letter-spacing: -0.01em;
}

/* Divider with Central Diamond */
.nature-heading-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  width: min(100%, 360px);
}

.divider-line {
  height: 1px;
  flex-grow: 1;
  background: #c49c58;
}

.divider-diamond {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Description Paragraph (Aptos Light) */
.nature-description {
  font-family: 'Aptos Light', 'Aptos', sans-serif;
  font-size: clamp(14px, 1.25vw, 20px);
  color: #2b2d30;
  line-height: 1.55;
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* PROJECT HIGHLIGHTS CARD (100% Coded HTML/CSS/SVG with 15px Inset Notched Radius) */
.highlights-card {
  position: relative;
  width: min(100%, 450px);
  min-height: 340px;
  margin-top: 6px;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.15));
}

.card-frame-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.card-inner {
  position: relative;
  z-index: 1;
  padding: clamp(26px, 3vh, 34px) clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card-title {
  font-family: 'Aptos SemiBold', 'Aptos', sans-serif;
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 600;
  color: #c49c58;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.card-title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 60%;
  margin: 8px 0 22px 0;
}

.card-div-line {
  height: 1px;
  flex-grow: 1;
  background: #c49c58;
}

.card-div-diamond {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.highlights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.9vh, 20px);
  width: 100%;
  align-items: flex-start;
  text-align: left;
  padding-left: 8px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  font-family: 'Aptos SemiBold', 'Aptos', sans-serif;
  font-weight: 600;
  font-size: clamp(11px, 0.85vw, 14px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hl-icon {
  width: clamp(22px, 1.8vw, 26px);
  height: clamp(22px, 1.8vw, 26px);
  flex-shrink: 0;
}


/* ============================================================
   SECTION 3: WAKE UP TO NATURE. STAY CONNECTED TO THE CITY.
   ============================================================ */
.section-city {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #111111;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  scroll-margin-top: 70px;
}

.section-city::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.62) 45%, rgba(0, 0, 0, 0.15) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Background image section3.webp */
.city-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

/* Content Container (Centered inside section3.webp) */
.city-content {
  position: absolute;
  top: clamp(70px, 12vh, 140px);
  left: clamp(40px, 5vw, 110px);
  z-index: 2;
  max-width: min(52%, 640px);
}

.city-headline-group {
  display: flex;
  flex-direction: column;
  width: fit-content;
  max-width: 100%;
}

.city-heading-main {
  font-family: 'Cormorant Garamond Bold', 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.4vw, 56px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.city-heading-sub {
  font-family: 'Cormorant Garamond Bold', 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.4vw, 56px);
  font-weight: 700;
  color: #e3b86e;
  line-height: 1.15;
  margin-top: 2px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.city-heading-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  width: 100%;
}

/* Bottom Feature Strip (Sleek Olive Box at Bottom Center) */
.city-feature-strip {
  position: absolute;
  bottom: clamp(28px, 5vh, 52px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  background: rgba(54, 72, 57, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 6px;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  width: max-content;
  max-width: calc(100% - 32px);
}

.city-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-family: 'Aptos-SemiBold', 'Aptos', sans-serif;
  font-size: clamp(12px, 0.95vw, 15px);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.feature-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.feature-divider {
  width: 1px;
  height: 16px;
  background: rgba(196, 156, 88, 0.5);
}


/* ==========================================================================
   SECTION 4: WORLD-CLASS AMENITIES & INTERIOR FEATURES
   ========================================================================== */

.section-amenities {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
  background: #f5f3eb;
  scroll-margin-top: 95px;
}

/* LEFT COLUMN (50% Width) */
.amenities-left-col {
  width: 50%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  background: #f5f3eb;
  z-index: 1;
}

/* BLOCK 1: WORLD-CLASS AMENITIES */
.amenities-block-top {
  flex: 0 0 auto;
  padding: 20px clamp(24px, 3.2vw, 48px) 14px;
  background: #f5f3eb;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.amenities-headline {
  display: flex;
  flex-direction: column;
  margin-top: 0;
}

.amenities-title-main {
  font-family: 'Cormorant Garamond Bold', 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.4vw, 38px);
  font-weight: 700;
  color: #22252a;
  line-height: 1.15;
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.3em;
  white-space: nowrap;
}

.amenities-title-sub {
  font-family: 'Cormorant Garamond Bold', 'Cormorant Garamond', serif;
  font-size: inherit;
  font-weight: 700;
  color: #c49c58;
  line-height: inherit;
  letter-spacing: -0.01em;
}

.amenities-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  margin-bottom: 12px;
  width: min(100%, 380px);
}

/* 5 EQUAL COLUMNS GRID (100% DIRECT VERTICAL ALIGNMENT) */
.amenities-grid-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  gap: 4px;
}

.grid-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}

.grid-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  width: 100%;
}

.grid-card-empty {
  min-height: 50px;
}

.grid-svg-icon {
  width: clamp(24px, 2.4vw, 34px);
  height: clamp(24px, 2.4vw, 34px);
  color: #354538;
}

.grid-card span {
  font-family: 'Aptos SemiBold', 'Aptos', sans-serif;
  font-size: clamp(8px, 0.72vw, 10.5px);
  font-weight: 600;
  color: #354538;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.grid-row-divider {
  width: 80%;
  height: 1px;
  background: rgba(53, 69, 56, 0.15);
  margin: 6px 0;
}

.grid-vsep {
  width: 1px;
  height: auto;
  background: rgba(53, 69, 56, 0.25);
  flex-shrink: 0;
}

/* BLOCK 2: INTERIOR FEATURES (Dark Forest Green) */
.amenities-block-middle {
  flex: 1 0 auto;
  padding: clamp(16px, 2.2vh, 26px) clamp(24px, 3.2vw, 48px);
  background: #354538;
  position: relative;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.features-headline {
  display: flex;
  flex-direction: column;
}

.features-title-label {
  font-family: 'Aptos SemiBold', 'Aptos', sans-serif;
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 600;
  color: #c49c58;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.features-title-sub {
  font-family: 'Cormorant Garamond Bold', 'Cormorant Garamond', serif;
  font-size: clamp(18px, 1.7vw, 26px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 6px;
  max-width: 85%;
  z-index: 2;
}

.features-list li {
  font-family: 'Aptos Light', 'Aptos', sans-serif;
  font-size: clamp(11px, 0.95vw, 14px);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.35;
  position: relative;
  padding-left: 16px;
}

.features-list li::before {
  content: "•";
  color: #ffffff;
  font-size: 14px;
  position: absolute;
  left: 0;
  top: -1px;
}

/* BLOCK 3: QUOTE & VASE DECOR */
.amenities-block-bottom {
  flex: 0 0 auto;
  padding: clamp(10px, 1.5vh, 18px) clamp(24px, 3.2vw, 48px);
  background: #f5f3eb;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2;
}

.quote-container {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  max-width: 92%;
}

.quote-mark.quote-open {
  align-self: flex-start;
}

.quote-mark {
  font-family: 'Cormorant Garamond Bold', 'Cormorant Garamond', serif;
  font-size: clamp(32px, 2.8vw, 46px);
  color: #c49c58;
  line-height: 0.8;
  flex-shrink: 0;
}

.quote-text {
  font-family: 'Aptos Light', 'Aptos', sans-serif;
  font-size: clamp(16px, 1.35vw, 21px);
  font-weight: 300;
  color: #a88448;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

/* RIGHT COLUMN (50% Width) */
.amenities-right-col {
  width: 50%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.building-night-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 95%;
}

.building-feature-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(53, 69, 56, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 5;
  border-top: 1px solid rgba(196, 156, 88, 0.3);
}

.bbar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  color: #ffffff;
}

.bbar-svg-icon {
  width: clamp(26px, 2.6vw, 36px);
  height: clamp(26px, 2.6vw, 36px);
  color: #ffffff;
}

.bbar-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bbar-text span {
  font-family: 'Aptos Light', 'Aptos', sans-serif;
  font-size: clamp(9.5px, 0.8vw, 11.5px);
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.bbar-text strong {
  font-family: 'Aptos SemiBold', 'Aptos', sans-serif;
  font-size: clamp(10.5px, 0.9vw, 13px);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.bbar-vdiv {
  width: 1px;
  height: 42px;
  background: rgba(196, 156, 88, 0.5);
  flex-shrink: 0;
}

/* ============================================================
   SITE HEADER (Sticky navigation matching Cielo/Rise pattern)
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid rgba(196, 156, 88, 0.25);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.site-header__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 14px 48px;
  max-width: 1440px;
  margin: 0 auto;
}

.site-header__links {
  display: flex;
  gap: 42px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__links a {
  font-family: 'Aptos SemiBold', 'Aptos', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #354538;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.site-header__links a:hover,
.site-header__links a.is-active {
  color: #c49c58;
}

.site-header__logo-link {
  flex-shrink: 0;
  margin: 0 70px;
}

.site-header__logo {
  height: 38px;
  width: auto;
  display: block;
}

.site-header__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #354538;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

/* Mobile Full-Screen Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: #f5f3eb;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.nav-overlay__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #354538;
  font-size: 28px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-overlay__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.nav-overlay__links a {
  font-family: 'Aptos SemiBold', 'Aptos', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #354538;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-overlay__links a:hover {
  color: #c49c58;
}

@media (max-width: 868px) {
  .site-header__nav {
    padding: 12px 20px;
    justify-content: space-between;
  }
  .site-header__links {
    display: none;
  }
  .site-header__logo-link {
    margin: 0;
  }
  .site-header__hamburger {
    display: flex;
  }
}

/* ============================================================
   CONTACT US & FOOTER SECTION
   ============================================================ */
/* ============================================================
   CONTACT US & FOOTER SECTION (Compact Layout)
   ============================================================ */
.contact {
  background: #f5f3eb;
  padding: 40px 40px;
  border-top: 1px solid rgba(196, 156, 88, 0.25);
  scroll-margin-top: 70px;
}

.contact__inner {
  max-width: 1240px;
  margin: 0 auto;
}

.contact__title {
  font-family: 'Cormorant Garamond Bold', 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(28px, 2.5vw, 38px);
  color: #354538;
  margin-bottom: 6px;
}

.contact__subtext {
  font-family: 'Aptos Light', 'Aptos Regular', 'Aptos', sans-serif;
  font-weight: 300;
  font-size: clamp(13px, 0.95vw, 15px);
  color: #555555;
  line-height: 1.5;
  max-width: 820px;
  margin-bottom: 22px;
}

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

.contact__form-col {
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 6px;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(53, 69, 56, 0.1);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  font-family: 'Aptos Light', 'Aptos Regular', 'Aptos', sans-serif;
  font-weight: 300;
  font-size: 13.5px;
  color: #222222;
  background: #fafafa;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  padding: 9px 13px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.contact__form textarea {
  resize: vertical;
  min-height: 75px;
}

.contact__form ::placeholder {
  color: #999999;
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-color: #c49c58;
  background: #ffffff;
}

.contact__submit {
  padding: 9px 26px;
  background: #354538;
  color: #ffffff;
  font-family: 'Aptos SemiBold', 'Aptos', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.25s ease;
}

.contact__submit:hover {
  background: #c49c58;
}

.contact__col {
  padding-top: 2px;
}

.contact__col-label {
  font-family: 'Aptos SemiBold', 'Aptos', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #354538;
  margin-bottom: 5px;
}

.contact__col-text {
  font-family: 'Aptos Light', 'Aptos Regular', 'Aptos', sans-serif;
  font-weight: 300;
  font-size: 13.5px;
  font-style: normal;
  color: #444444;
  line-height: 1.5;
  margin-bottom: 12px;
}

.contact__col-text--spaced {
  margin-bottom: 16px;
}

.contact__links {
  font-family: 'Aptos Light', 'Aptos Regular', 'Aptos', sans-serif;
  font-weight: 300;
  font-size: 13.5px;
  line-height: 1.6;
  color: #444444;
}

.contact__links a {
  font-family: 'Aptos SemiBold', 'Aptos', sans-serif;
  font-weight: 600;
  color: #c49c58;
  text-decoration: none;
  transition: text-decoration 0.2s;
}

.contact__links a:hover {
  text-decoration: underline;
}

@media (max-width: 868px) {
  .contact {
    padding: 32px 20px;
  }
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact__col {
    text-align: center;
  }
  .contact__col-text,
  .contact__links {
    text-align: center;
  }
  .contact__form-col {
    text-align: left;
  }
  .contact__submit {
    align-self: center;
  }
}

/* ── Contact Form Validation & Feedback Styles ── */
.contact__form input.is-error,
.contact__form textarea.is-error {
  border-color: #c0392b !important;
  background-color: #fef5f4 !important;
  box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.15);
}

.contact__form input.is-error:focus,
.contact__form textarea.is-error:focus {
  border-color: #c0392b !important;
}

.form-success-msg {
  display: none;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
  padding: 10px 14px;
  border-radius: 4px;
  font-family: 'Aptos SemiBold', 'Aptos', sans-serif;
  font-size: 13.5px;
  line-height: 1.4;
  margin-top: 10px;
  animation: fadeIn 0.3s ease;
}

.form-success-msg.is-visible {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Section 5: Floor Plans ("Intelligent Planning. Comfortable Living.") ── */
.floorplans {
  position: relative;
  background-color: #F8F5EE;
  padding: 60px 40px 80px 40px;
  overflow: hidden;
  scroll-margin-top: 70px;
}

.floorplans::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
  height: 480px;
  background-image: url('leaves-watermark-pure.png');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  opacity: 0.14;
  pointer-events: none;
  z-index: 1;
}

.floorplans__inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  z-index: 2;
}

/* Header Section */
.floorplans__header {
  margin-bottom: 35px;
}

.floorplans__title-dark {
  font-family: 'Cormorant Garamond Bold', 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.1;
  color: #2C2E2B;
  margin: 0 0 2px 0;
  letter-spacing: -0.5px;
}

.floorplans__title-gold {
  font-family: 'Calisto MT', serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 1.1;
  color: #C49C58;
  margin: 0 0 16px 0;
}

.floorplans__divider {
  display: flex;
  align-items: center;
  width: 320px;
  max-width: 100%;
}

.floorplans__divider-line {
  flex: 1;
  height: 1px;
  background-color: #C49C58;
}

.floorplans__divider-diamond {
  width: 16px;
  height: 16px;
  margin: 0 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floorplans__divider-diamond::before {
  content: '';
  width: 12px;
  height: 12px;
  border: 1px solid #C49C58;
  transform: rotate(45deg);
  position: absolute;
}

.floorplans__divider-diamond::after {
  content: '';
  width: 6px;
  height: 6px;
  background-color: #C49C58;
  transform: rotate(45deg);
  position: absolute;
}

/* Main Grid Layout */
.floorplans__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.floorplans__col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.floorplans__img-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.floorplans__img {
  max-width: 100%;
  height: auto;
  display: block;
}

.floorplans__subtitle {
  font-family: 'Aptos Regular', 'Aptos', sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #1A1A1A;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  text-align: center;
}

/* Floor Plan Tables */
.floorplans__tables-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  width: 100%;
  align-items: flex-start;
}

.fp-table {
  border-collapse: collapse;
  background-color: transparent;
  font-family: 'Arial Custom', 'Arial', sans-serif;
  font-size: 11px;
  line-height: 1.2;
  color: #111111;
  border: 1px solid #333333;
}

.fp-table th,
.fp-table td {
  border: 1px solid #333333;
  padding: 3px 5px;
  vertical-align: middle;
}

.fp-table th {
  font-family: 'Arial Custom', 'Arial', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  background-color: transparent;
  padding: 5px;
  letter-spacing: 0.5px;
}

.fp-no {
  width: 16px;
  text-align: center;
  font-weight: 600;
}

.fp-room {
  font-weight: 400;
  white-space: nowrap;
}

.fp-dim {
  font-weight: 400;
  white-space: nowrap;
}

.fp-table--combined {
  margin: 0 auto;
}

/* Floor Plan Action Buttons */
.floorplans__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 45px;
  width: 100%;
  position: relative;
  z-index: 3;
}

.floorplans__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 32px;
  font-family: 'Aptos SemiBold', 'Aptos', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: all 0.28s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.floorplans__btn i {
  font-size: 15px;
  transition: transform 0.28s ease;
}

.floorplans__btn--primary {
  background-color: #354538;
  color: #ffffff;
  border: 1.5px solid #354538;
}

.floorplans__btn--primary:hover {
  background-color: #C49C58;
  border-color: #C49C58;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 156, 88, 0.35);
}

.floorplans__btn--secondary {
  background-color: #C49C58;
  color: #ffffff;
  border: 1.5px solid #C49C58;
}

.floorplans__btn--secondary:hover {
  background-color: #354538;
  border-color: #354538;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(53, 69, 56, 0.3);
}

.floorplans__btn:hover i {
  transform: translateY(-1px);
}

@media (max-width: 1100px) {
  .floorplans__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .floorplans {
    padding: 40px 20px;
  }
  .floorplans__title-dark {
    font-size: 34px;
  }
  .floorplans__title-gold {
    font-size: 32px;
  }
  .floorplans__tables-group {
    flex-direction: column;
    align-items: center;
  }
  .fp-table {
    width: 100%;
    max-width: 450px;
  }
  .floorplans__actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 25px;
  }
  .floorplans__btn {
    width: 100%;
    max-width: 260px;
    padding: 8px 18px;
    font-size: 13px;
  }
}

/* ============================================================
   SECTION 6: LOCATION MAP & CONNECTIVITY
   ============================================================ */
.section-location {
  display: flex;
  width: 100%;
  min-height: 720px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 70px;
}

.location__sidebar {
  width: 28%;
  min-width: 320px;
  max-width: 380px;
  background: #354538;
  color: #ffffff;
  padding: 54px 32px 50px 44px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.06);
  z-index: 2;
}

.location__header {
  margin-bottom: 30px;
}

.location__subheading {
  font-family: 'Aptos SemiBold', 'Aptos', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #c49c58;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.location__title {
  font-family: 'Aptos Light', 'Aptos', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.location__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.location__divider::before,
.location__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(196, 156, 88, 0.4);
}

.location__divider .diamond {
  color: #c49c58;
  font-size: 11px;
}

.location__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 2;
}

.location__item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(196, 156, 88, 0.2);
}

.location__item:last-child {
  border-bottom: none;
}

.location__icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location__details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.location__label {
  font-family: 'Aptos SemiBold', 'Aptos', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.location__time {
  font-family: 'Aptos Light', 'Aptos', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #c49c58;
  letter-spacing: 0.05em;
}

.location__watermark-left {
  position: absolute;
  bottom: -40px;
  left: -40px;
  pointer-events: none;
  opacity: 0.75;
  z-index: 1;
}

/* RIGHT MAIN MAP AREA */
.location__main {
  flex: 1;
  padding: 44px 50px 36px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  position: relative;
}

.location__heading-group {
  text-align: center;
  margin-bottom: 24px;
}

.location__main-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: clamp(24px, 2.3vw, 36px);
  margin-bottom: 10px;
}

.location__heading-group .title-dark {
  font-family: 'Cormorant Garamond Bold', serif;
  font-weight: 700;
  color: #2c352e;
}

.location__heading-group .title-gold {
  font-family: 'Calisto MT', serif;
  font-weight: 400;
  color: #c49c58;
}

.location__main-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 360px;
  margin: 0 auto;
}

.location__main-divider::before,
.location__main-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(196, 156, 88, 0.4);
}

.location__main-divider .diamond {
  color: #c49c58;
  font-size: 11px;
}

.location__map-wrap {
  width: 100%;
  max-width: 1050px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
}

.location__map-img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  display: block;
}

/* ============================================================
   DEEP RESPONSIVENESS SYSTEM (Mobile, Tablet, Small Desktop)
   ============================================================ */

/* ── Tablet & Small Screens (max-width: 992px) ── */
@media (max-width: 992px) {
  /* Section 4: Amenities & Features */
  .section-amenities {
    flex-direction: column;
    min-height: auto;
  }

  .amenities-left-col {
    width: 100%;
    min-height: auto;
  }

  .amenities-right-col {
    width: 100%;
    height: 480px;
    min-height: auto;
    position: relative;
  }

  .building-feature-bar {
    padding: 12px 16px;
    gap: 12px;
  }

  .building-feature-item {
    font-size: 11px;
  }

  /* Section 6: Location Map */
  .section-location {
    flex-direction: column;
    min-height: auto;
  }

  .location__sidebar {
    width: 100%;
    max-width: 100%;
    padding: 36px 24px;
  }

  .location__main {
    width: 100%;
    padding: 36px 16px;
  }

  /* Section 7: Contact Footer */
  .contact {
    padding: 36px 20px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ── Mobile Devices (max-width: 768px) ── */
@media (max-width: 768px) {
  /* Hero Section 1 — Mobile Layout (Building Highlight) */
  .hero {
    min-height: 100vh;
    height: auto;
    padding: 72px 14px 16px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    background: #2a3d52;
  }

  /* Soft subtle vignette only at top to keep building 100% visible */
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
    pointer-events: none;
  }

  .hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center;
    z-index: 0;
  }

  .hero-left-branding {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    z-index: 2;
    margin-top: 0;
    margin-bottom: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-bottom-cta {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: auto;
    margin-bottom: 138px;
    z-index: 3;
  }

  .hero-title {
    margin-bottom: 4px;
  }

  .hero-title-img {
    width: min(54%, 180px);
    height: auto;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
  }



  /* Section 2: Nature & Life */
  .nature-title {
    font-size: clamp(26px, 6vw, 36px);
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 92%;
    margin: 0 auto;
  }

  .highlight-card {
    padding: 20px 16px;
  }

  /* Section 3: City Life (Tablet Viewport: 577px to 768px) */
  .section-city {
    min-height: 100vh;
    padding-bottom: 0;
  }

  .city-bg-img {
    object-position: center center;
  }

  .city-content {
    position: absolute;
    top: clamp(65px, 11vh, 120px);
    left: clamp(30px, 4vw, 70px);
    padding: 0;
    max-width: min(50%, 480px);
  }

  .city-heading-main,
  .city-heading-sub {
    font-size: clamp(26px, 3.5vw, 42px);
  }

  .city-heading-divider {
    width: 100%;
    margin-top: 14px;
  }

  .city-feature-strip {
    position: absolute;
    bottom: clamp(24px, 4vh, 38px);
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    width: max-content;
    max-width: calc(100% - 32px);
    flex-wrap: nowrap;
    gap: 16px;
    padding: 10px 22px;
    justify-content: center;
  }

  .city-feature-item {
    font-size: 12.5px;
    gap: 7px;
  }

  .city-feature-item .feature-icon {
    width: 16px;
    height: 16px;
  }

  .city-feature-strip .feature-divider {
    height: 14px;
  }

  /* Section 4: Amenities */
  .amenities-block-top {
    padding: 16px 18px 10px;
  }

  .amenities-block-middle {
    padding: 14px 18px;
  }

  .amenities-block-bottom {
    padding: 10px 16px;
    width: 100%;
    flex: 1 1 auto;
  }

  .quote-container {
    max-width: 100%;
    width: 100%;
  }

  .quote-text {
    font-size: 14px;
  }

  .amenities-right-col {
    height: auto;
    overflow: visible;
  }

  .building-night-img {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    display: block;
    object-fit: unset;
    object-position: center center;
  }

  .building-feature-bar {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: space-around;
    padding: 8px 12px;
  }

  .bbar-svg-icon {
    width: 20px;
    height: 20px;
  }

  .bbar-text span {
    font-size: 8.5px;
  }

  .bbar-text strong {
    font-size: 9.5px;
  }

  .bbar-vdiv {
    width: 1px;
    height: 22px;
    background: rgba(255, 255, 255, 0.3);
  }

  /* Section 5: Floor Plans */
  .floorplans {
    padding: 40px 16px;
  }

  .floorplans__title-dark {
    font-size: 30px;
  }

  .floorplans__title-gold {
    font-size: 28px;
  }

  .floorplans__tables-group {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .fp-table {
    width: 100%;
    max-width: 100%;
    font-size: 11px;
  }

  .fp-table th, .fp-table td {
    padding: 4px 6px;
  }

  .floorplans__btn {
    padding: 7px 16px;
    font-size: 12.5px;
    max-width: 230px;
  }

  /* Section 6: Location Map */
  .location__subheading {
    font-size: 18px;
  }

  .location__title {
    font-size: 18px;
  }

  .location__item {
    gap: 12px;
    padding: 12px 0;
  }

  .location__label {
    font-size: 11.5px;
  }

  .location__time {
    font-size: 11.5px;
  }

  .location__map-img {
    max-height: 420px;
  }

  /* Section 7: Contact Footer */
  .contact__title {
    font-size: 32px;
  }

  .contact__subtext {
    font-size: 13.5px;
  }

  .contact__form {
    padding: 16px 16px;
  }

  .contact__info-title {
    font-size: 14px;
  }

}

/* ── Mobile Devices (max-width: 576px) ── */
@media (max-width: 576px) {
  /* Section 3: City Life (Mobile Viewport Only) */
  .section-city {
    min-height: auto;
    padding-bottom: 10px;
  }

  .city-bg-img {
    object-position: 75% center;
  }

  .city-content {
    position: relative;
    top: auto;
    left: auto;
    padding: 32px 20px 0;
    max-width: min(100%, 360px);
  }

  .city-heading-main,
  .city-heading-sub {
    font-size: clamp(19px, 4.5vw, 30px);
  }

  .city-heading-divider {
    width: min(100%, 220px);
    margin-top: 10px;
  }

  .city-feature-strip {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 14px auto 4px;
    width: fit-content;
    max-width: min(92%, 340px);
    flex-wrap: nowrap;
    gap: 8px;
    padding: 5px 12px;
    justify-content: center;
  }

  .city-feature-item {
    font-size: clamp(9px, 2.2vw, 10.5px);
    gap: 4px;
  }

  .city-feature-item .feature-icon {
    width: 12px;
    height: 12px;
  }

  .city-feature-strip .feature-divider {
    height: 9px;
  }

  /* Section 4: Amenities (Mobile Viewport) */
  .amenities-block-top {
    padding: 14px 14px 8px;
  }

  .amenities-divider {
    width: 100%;
  }

  .amenities-block-middle {
    padding: 12px 14px;
  }

  .amenities-block-bottom {
    padding: 8px 12px;
  }

  /* amenities right col inherits full-image fix from 768px block */

  .building-feature-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 6px;
    justify-content: space-around;
    padding: 6px 10px;
  }

  .bbar-item {
    flex-direction: row;
    gap: 4px;
  }

  .bbar-svg-icon {
    width: 18px;
    height: 18px;
  }

  .bbar-text span {
    font-size: 8px;
  }

  .bbar-text strong {
    font-size: 9px;
  }

  .bbar-vdiv {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.3);
  }
}

/* ── Small Mobile Devices (max-width: 480px) ── */
@media (max-width: 480px) {


  .amenities-grid-container {
    gap: 2px;
  }

  .grid-card span {
    font-size: 8px;
  }

  .grid-svg-icon {
    width: 22px;
    height: 22px;
  }

  .location__main-title {
    font-size: 22px;
  }

  .location__map-img {
    max-height: 340px;
  }
}
